반응형
문제 링크:https://www.acmicpc.net/problem/10026
<문제 풀이>
정상인에 대해서 BFS를 돌리고, 적록색약에 대해서 BFS를 돌리면 되는데
적록색약은 빨간색과 초록색을 같은 색으로 보니깐 board[i][j]의 값이 R이면 G로 바꿔준 뒤 BFS를 돌리면 됩니다.
<C++ 소스 코드>
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
|
#include <iostream>
#include <string>
#include <algorithm>
#include <queue>
#include <vector>
#include <utility>
using namespace std;
#define X first
#define Y second
char board[100][100];
bool visited[100][100];
int dx[4] = { 1, 0, -1, 0 };
int dy[4] = { 0, -1, 0, 1 };
int n;
int bfs() {
int cnt = 0;
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
if (!visited[i][j]) {
cnt++;
queue<pair<int, int>> Q;
Q.push({ i,j });
while (!Q.empty()) {
auto cur = Q.front(); Q.pop();
for (int dir = 0; dir < 4; dir++) {
int nx = cur.X + dx[dir];
int ny = cur.Y + dy[dir];
if (nx < 0 || ny < 0 || nx >= n || ny >= n)continue;
if (board[cur.X][cur.Y] != board[nx][ny] || visited[nx][ny]) continue; //다른 색이면 무시
Q.push({ nx, ny });
visited[nx][ny] = true;
}
}
}
}
}
return cnt;
}
//적록 색약은 빨간색과 초록색이 같은색
void change_R_to_G() {
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
if (board[i][j] == 'R') board[i][j] = 'G';
}
}
}
int main(void) {
ios::sync_with_stdio(false);
cin.tie(nullptr);
cin >> n;
for (int i = 0; i < n; i++) {
string s; cin >> s;
int s_len = s.size();
for (int j = 0; j < s_len; j++) {
board[i][j] = s[j];
}
}
cout << bfs() << ' ';
change_R_to_G();
fill(&visited[0][0], &visited[99][100], 0);
cout << bfs();
return 0;
}
|
cs |
반응형
'알고리즘 문제풀이 > 백준' 카테고리의 다른 글
[백준 5427번] 불 (0) | 2021.11.17 |
---|---|
[백준 7562번] 나이트의 이동 (0) | 2021.11.16 |
[백준 4179번] 불! (0) | 2021.11.04 |
[백준 7576번] 토마토 (0) | 2021.11.03 |
[백준 4949번] 균형잡힌 세상 (0) | 2021.11.01 |