-
Notifications
You must be signed in to change notification settings - Fork 481
/
0999.cpp
37 lines (36 loc) · 977 Bytes
/
0999.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
static int x = []() {std::ios::sync_with_stdio(false); cin.tie(0); return 0; }();
class Solution
{
public:
int numRookCaptures(vector<vector<char>>& board)
{
vector<int> R(2, 0);
for (int i = 0; i < 8; ++i)
{
for (int j = 0; j < 8; ++j)
{
if (board[i][j] == 'R')
{
R[0] = i; R[1] = j; break;
}
}
}
int res = 0;
vector<vector<int>> d = {{0,1}, {0,-1}, {-1,0}, {1,0}};
for (auto& it : d)
{
int nx = it[0] + R[0];
int ny = it[1] + R[1];
while (nx >= 0 and ny >= 0 and ny < 8 and nx < 8)
{
if (board[nx][ny] == 'p')
{
res++; break;
}
if (board[nx][ny] == 'B') break;
nx += it[0]; ny += it[1];
}
}
return res;
}
};