-
Notifications
You must be signed in to change notification settings - Fork 0
/
2580.cpp
91 lines (91 loc) · 1.37 KB
/
2580.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
//#include<iostream>
//#include<vector>
//using namespace std;
//
//int arr[9][9] = {0,};
//vector<pair<int, int>> vec;
//
//bool isCheck(int r, int c, int num)
//{
// for (int i = 0; i < 9; i++)
// {
// if(arr[r][i] == num)
// {
// return false;
// }
// }
//
// for (int i = 0; i < 9; i++)
// {
// if (arr[i][c] == num)
// {
// return false;
// }
// }
//
// r = r / 3;
// c = c / 3;
//
// for (int rr = r * 3; rr < (r * 3) + 3; rr++)
// {
// for (int cc = c * 3; cc < (c * 3) + 3; cc++)
// {
// if (arr[rr][cc] == num)
// {
// return false;
// }
// }
// }
//
// return true;
//}
//
//void Stoku(int index)
//{
// if (index == vec.size())
// {
// for (int i = 0; i < 9; i++)
// {
// for (int j = 0; j < 9; j++)
// {
// cout << arr[i][j] << ' ';
// }
// cout << '\n';
// }
// exit(0);
// }
// for (int i = 1; i <= 9; i++)
// {
// int x = vec[index].first;
// int y = vec[index].second;
// if (isCheck(x, y, i))
// {
// arr[x][y] = i;
// Stoku(index + 1);
// arr[x][y] = 0;
// }
//
// }
//}
//
//int main(void)
//{
// for (int i = 0; i < 9; i++)
// {
// for (int j = 0; j < 9; j++)
// {
// int temp;
//
// cin >> temp;
// arr[i][j] = temp;
//
// if (temp == 0)
// {
// vec.push_back(make_pair(i, j));
// }
// }
// }
//
// Stoku(0);
// return 0;
//}