-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathp36.cpp
47 lines (42 loc) · 1.03 KB
/
p36.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#include<algorithm>
#include<vector>
#include<iostream>
#include<string>
using namespace std;
class Solution {
public:
bool isValidSudoku(vector<vector<char>>& board) {
int heng[9],shu[9],kuai[9];
for (int i=0;i<9;i++)
heng[i]=shu[i]=kuai[i]=0;
int n,h,s,k,t;
for (int i=0;i<9;i++)
for (int j=0;j<9;j++) {
if (board[i][j]=='.') continue;
n=board[i][j]-'0';
h=i;s=j;
k=i/3*3+j/3;
t=1<<n;
if ((t&heng[h] || t&shu[s] || t&kuai[k]) == true) return false;
else {
heng[h]|=t;
shu[s]|=t;
kuai[k]|=t;
}
}
return true;
}
};
static const auto io_sync_off = []()
{
// turn off sync
std::ios::sync_with_stdio(false);
// untie in/out streams
std::cin.tie(nullptr);
return nullptr;
}();
int main() {
auto res = Solution().xxx;
cout << res <<endl;
return 0;
}