-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path1012.cpp
54 lines (49 loc) · 1.17 KB
/
1012.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
#include <iostream>
#include <queue>
#include <cstring>
using namespace std;
int field[51][51], visited[51][51];
int dir[4][2] = { {1, 0}, {0, 1}, {-1, 0}, {0, -1} };
int T, M, N, K, x, y;
int checkRange(int nextX, int nextY) {
if (nextX < 0 || nextX >= N || nextY < 0 || nextY >= M) return 0;
else return 1;
}
int BFS() {
queue<pair<int, int>>q;
int nextX, nextY, cnt = 0;
for (int i = 0; i < N; i++) {
for (int j = 0; j < M; j++) {
if (field[i][j] && !visited[i][j]) {
cnt++;
visited[i][j] = 1;
q.push(make_pair(i, j));
while (!q.empty()) {
int ax = q.front().first, ay = q.front().second;
q.pop();
for (int k = 0; k < 4; k++) {
nextX = ax + dir[k][0], nextY = ay + dir[k][1];
if (checkRange(nextX, nextY) && field[nextX][nextY] && !visited[nextX][nextY]) {
visited[nextX][nextY] = 1;
q.push(make_pair(nextX, nextY));
}
}
}
}
}
}
return cnt;
}
int main() {
cin >> T;
for (int t = 0; t < T; t++) {
cin >> M >> N >> K;
memset(field, 0, sizeof(field)), memset(visited, 0, sizeof(visited));
for (int i = 0; i < K; i++) {
cin >> y >> x;
field[x][y] = 1;
}
cout << BFS() << endl;
}
return 0;
}