-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbroken-board-dominoes.cc
101 lines (94 loc) · 3.23 KB
/
broken-board-dominoes.cc
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
92
93
94
95
96
97
98
99
100
101
#include <algorithm>
#include <iostream>
#include <stack>
#include <vector>
using namespace std;
ostream &operator<<(ostream &os, const std::vector<vector<char>> &board) {
for (auto &&row : board) {
for (auto &&col : row) { os << col << " "; }
os << endl;
}
return os;
}
class Solution {
public:
int domino(int n, int m, const vector<vector<int>> &broken) {
vector<vector<char>> board(n, vector<char>(m, 0));
for (auto &&xy : broken) { board[xy[0]][xy[1]] = 'X'; }
const int L = (n * m - broken.size()) / 2;
int res = 0;
stack<tuple<char, int, int>> opr_stk;
for (int row = 0, col = 0;;) {
if (board[row][col] == 0) {
if (col + 1 < m && board[row][col + 1] == 0) {
board[row][col] = board[row][col + 1] = 'O';
opr_stk.emplace('-', row, col);
col += 2;
} else if (row + 1 < n && board[row + 1][col] == 0) {
board[row][col] = board[row + 1][col] = 'O';
opr_stk.emplace('|', row, col);
++col;
} else {
++col;
}
//
system("cls");
cout << board << endl;
} else {
++col;
}
if (col >= m) {
++row;
col = 0;
}
// 回退
if (row >= n) {
res = std::max<int>(res, opr_stk.size());
if (opr_stk.size() == L) { return L; }
for (;;) {
if (opr_stk.empty()) return res;
auto &[dir, x, y] = opr_stk.top();
if (dir == '-') {
board[x][y + 1] = 0;
if (x + 1 < n && board[x + 1][y] == 0) {
board[x + 1][y] = 'O';
opr_stk.pop();
opr_stk.emplace('|', x, y);
row = x;
col = y;
break;
}
} else {
board[x][y] = board[x + 1][y] = 0;
}
opr_stk.pop();
//
system("cls");
cout << board << endl;
}
}
}
}
};
int main(int argc, char const *argv[]) {
Solution solution;
// cout << solution.domino(2, 3, {{1, 0}, {1, 1}}) << endl;
// cout << solution.domino(3, 3, {}) << endl;
cout << solution.domino(8, 8,
{{1, 0},
{2, 5},
{3, 1},
{3, 2},
{3, 4},
{4, 0},
{4, 3},
{4, 6},
{4, 7},
{5, 3},
{5, 5},
{5, 6},
{6, 3},
{7, 2},
{7, 7}})
<< endl;
}