Post

[Gold V] 적록색약 - 10026

[Gold V] 적록색약 - 10026

문제 링크

문제 링크

성능 요약

메모리: 2156 KB, 시간: 0 ms

문제 설명

적록색약은 빨간색과 초록색의 차이를 거의 느끼지 못한다. 따라서, 적록색약인 사람이 보는 그림은 아닌 사람이 보는 그림과는 좀 다를 수 있다.

크기가 N×N인 그리드의 각 칸에 R(빨강), G(초록), B(파랑) 중 하나를 색칠한 그림이 있다. 그림은 몇 개의 구역으로 나뉘어져 있는데, 구역은 같은 색으로 이루어져 있다. 또, 같은 색상이 상하좌우로 인접해 있는 경우에 두 글자는 같은 구역에 속한다. (색상의 차이를 거의 느끼지 못하는 경우도 같은 색상이라 한다)

예를 들어, 그림이 아래와 같은 경우에

RRRBB
GGBBB
BBBRR
BBRRR
RRRRR

적록색약이 아닌 사람이 봤을 때 구역의 수는 총 4개이다. (빨강 2, 파랑 1, 초록 1) 하지만, 적록색약인 사람은 구역을 3개 볼 수 있다. (빨강-초록 2, 파랑 1)

그림이 입력으로 주어졌을 때, 적록색약인 사람이 봤을 때와 아닌 사람이 봤을 때 구역의 수를 구하는 프로그램을 작성하시오.

입력

첫째 줄에 N이 주어진다. (1 ≤ N ≤ 100)

둘째 줄부터 N개 줄에는 그림이 주어진다.

출력

적록색약이 아닌 사람이 봤을 때의 구역의 개수와 적록색약인 사람이 봤을 때의 구역의 수를 공백으로 구분해 출력한다.

코드

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
#include <iostream>
#include <vector>
#include <queue>

using namespace std;

int dy[4] = { 1, 0, -1, 0 };
int dx[4] = { 0, -1, 0, 1 };

void bfs(int y, int x, vector<vector<bool>>& visited, const vector<vector<char>>& arr, bool colorblind) {
	queue<pair<int, int>> q;
	q.push({ y, x });
	visited[y][x] = true;
	char currentColor = arr[y][x];

	while (!q.empty()) {
		pair<int, int> cur = q.front();
		q.pop();

		for (int i = 0; i < 4; i++) {
			int ny = cur.first + dy[i];
			int nx = cur.second + dx[i];

			if (ny < 0 || nx < 0 || ny >= arr.size() || nx >= arr.size()) continue;
			if (visited[ny][nx]) continue;

			if (colorblind) {
				// 적록색약의 경우 'R'과 'G'를 같은 색상으로 간주
				if ((currentColor == 'R' || currentColor == 'G') && (arr[ny][nx] == 'R' || arr[ny][nx] == 'G')) {
					visited[ny][nx] = true;
					q.push({ ny, nx });
				}
				else if (currentColor == arr[ny][nx]) {
					visited[ny][nx] = true;
					q.push({ ny, nx });
				}
			}
			else {
				if (currentColor == arr[ny][nx]) {
					visited[ny][nx] = true;
					q.push({ ny, nx });
				}
			}
		}
	}
}

void solve(const vector<vector<char>>& arr) {
	int cntNormal = 0;
	int cntColorblind = 0;

	vector<vector<bool>> visitedNormal(arr.size(), vector<bool>(arr.size(), false));
	vector<vector<bool>> visitedColorblind(arr.size(), vector<bool>(arr.size(), false));

	// 일반 사람의 경우
	for (int i = 0; i < arr.size(); i++) {
		for (int j = 0; j < arr.size(); j++) {
			if (!visitedNormal[i][j]) {
				bfs(i, j, visitedNormal, arr, false);
				cntNormal++;
			}
		}
	}

	// 적록색약의 경우
	for (int i = 0; i < arr.size(); i++) {
		for (int j = 0; j < arr.size(); j++) {
			if (!visitedColorblind[i][j]) {
				bfs(i, j, visitedColorblind, arr, true);
				cntColorblind++;
			}
		}
	}

	cout << cntNormal << " " << cntColorblind << "\n";
}

int main() {
	ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0);

	int N;
	cin >> N;

	vector<vector<char>> arr(N, vector<char>(N));

	for (int i = 0; i < N; i++) {
		for (int j = 0; j < N; j++) {
			cin >> arr[i][j];
		}
	}

	solve(arr);

	return 0;
}

This post is licensed under CC BY 4.0 by the author.