Stella_Ex
Stella_Ex
全部文章
分类
归档
标签
去牛客网
登录
/
注册
Stella_Ex的博客
全部文章
(共1篇)
题解 | #Sudoku#
用bitset标记每个行、列、组 1~9的出现,暴力搜索即可#include <bits/stdc++.h> using namespace std; constexpr int N = 15; int a[N][N]; bitset<N>row[N], column[N]...
2022-12-01
0
251