반응형
https://www.acmicpc.net/problem/1012
본 문제는 bfs와 dfs로 풀 수 있다. 비슷한 문제가 참 많다. 그래서 문제를 많이 풀어본 사람들은 쉽게 풀 수 있다. 그러나 난 x, y의 값 때문에 실수를 했다. 보통 row의 개수를 n, col의 개수를 m으로 많이 나온다. 문제를 제대로 읽지 않고 풀었다가 틀렸다. 결론은 문제를 잘 읽어야 한다.
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 | #include <cstdio> #include <cstring> #include <queue> using namespace std; int d[51][51]; int dx[] = {1, -1, 0, 0}; int dy[] = {0, 0, 1, -1}; bool chk[51][51]; int main() { int t; scanf("%d", &t); while (t--) { int m, n, k, x, y; scanf("%d %d %d", &m, &n, &k); memset(d, 0, sizeof(d)); memset(chk, false, sizeof(chk)); for (int i = 0; i < k; i++) { scanf("%d %d", &x, &y); d[x][y] = 1; } int cnt = 0; queue<pair<int, int>> q; for (int i = 0; i < m; i++) { for (int j = 0; j < n; j++) { if (!chk[i][j] && d[i][j] == 1) { q.push(make_pair(i, j)); chk[i][j] = true; cnt += 1; while (!q.empty()) { int x = q.front().first; int y = q.front().second; q.pop(); for (int i = 0; i < 4; i++) { int nx = x + dx[i]; int ny = y + dy[i]; if (nx >= 0 && nx < m && ny >= 0 && ny < n) { if (!chk[nx][ny] && d[nx][ny] == 1) { q.push(make_pair(nx, ny)); chk[nx][ny] = true; } } } } } } } printf("%d\n", cnt); } return 0; } | cs |
반응형
'백준' 카테고리의 다른 글
[백준] 11403 - 경로 찾기, C++ (0) | 2020.01.07 |
---|---|
[백준] 1697 - 숨바꼭질, C++ (0) | 2020.01.06 |
[백준] 2667 - 단지번호붙이기, C++ (0) | 2020.01.06 |
[백준] 2606 - 바이러스, C++ (알고리즘 정리 예정) (0) | 2020.01.06 |
[백준] 1260 - DFS와 BFS, C++ (0) | 2020.01.06 |
댓글