티스토리 뷰
[백준 1012번 유기농 배추 URL]
https://www.acmicpc.net/problem/1012
[유사 문제]
2019/02/11 - [알고리즘 문제/백준(BOJ)] - [백준 2667번] 단지번호붙이기
이 문제는 [백준 2667번 단지번호 붙이기]와 거의 똑같은 문제라고 볼 수 있습니다.
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 102 103 104 105 106 107 108 109 | #include <iostream> #include <cstring> #include <queue> using namespace std; #define MAX 50 int n, m, k; int dir[4][2] = { {1, 0}, {-1, 0}, {0, 1}, {0, -1} }; int map[MAX][MAX]; bool visited[MAX][MAX]; bool boundary(int row, int col) { return (row >= 0 && row <= n) && (col >= 0 && col < m); } void show() { for (int i = 0; i < n; i++) { for (int j = 0; j < m; j++) { cout.width(5); cout << map[i][j] << " "; } cout << endl; } } void bfs(int row, int col) { queue<pair<int, int> > q; q.push(make_pair(row, col)); visited[row][col] = true; while (!q.empty()) { pair<int, int> p = q.front(); q.pop(); int cx = p.first; int cy = p.second; for (int i = 0; i < 4; i++) { int nx = cx + dir[i][0]; int ny = cy + dir[i][1]; if (!visited[nx][ny] && map[nx][ny] == 1 && boundary(nx, ny)) { visited[nx][ny] = true; q.push(make_pair(nx, ny)); } } } } void dfs(int row, int col) { visited[row][col] = true; for (int i = 0; i < 4; i++) { int nr = row + dir[i][0]; int nc = col + dir[i][1]; if (boundary(nr, nc) && !visited[nr][nc] && map[nr][nc] == 1) dfs(nr, nc); } } int main(void) { int t; cin >> t; for (int i = 1; i <= t; i++) { memset(visited, false, sizeof(visited)); memset(map, 0, sizeof(map)); cin >> m >> n >> k; for (int i = 0; i < k; i++) { int row, col; cin >> col >> row; map[row][col] = 1; } int cnt = 0; for (int i = 0; i < n; i++) { for (int j = 0; j < m; j++) { if (map[i][j] == 1 && !visited[i][j]) { //bfs(i, j); dfs(i, j); cnt++; } } } cout << cnt << endl; } return 0; } | cs |
'알고리즘 문제 > 백준(BOJ)' 카테고리의 다른 글
[백준 16235번] 나무 재테크 :: 늦깎이 IT (0) | 2019.03.05 |
---|---|
[백준 2583번] 영역 구하기_C++ (0) | 2019.02.17 |
[백준 2206번] 벽 부수고 이동하기_JAVA (0) | 2019.02.15 |
[백준 1194번] 달이 차오른다, 가자._JAVA (1) | 2019.02.14 |
[백준 11559번] Puyo Puyo (Java) (0) | 2019.02.12 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- 연산자 끼워넣기
- 탈주범 검거
- 최소힙
- 시뮬레이션
- 배열
- SWEA
- 구슬 탈출2
- 우선순위 큐
- 큐
- 알고스팟
- 14888
- 나무 재테크
- BFS
- 힙정렬
- 탐색
- 알고리즘
- 최대힙
- 브루트포스
- 정렬
- 자바
- 구현
- 리스트
- 삼성
- DFS
- 영역 구하기
- 힙
- 백준
- 트리
- 중간값
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함