https://www.acmicpc.net/problem/1780
풀이:
[백준]2630 색종이 만들기 참고
코드:
사용언어 : 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
|
#include <iostream>
using namespace std;
int n, c[2200][2200], W = 0, B = 0, D = 0;
void se(int x, int y, int a) {
bool w = true, b = true, d = true;
for (int i = 0; i < a; i++)
for (int t = 0; t < a; t++)
if (!w && !b && !d) break;
else if (c[x + i][y + t] == -1) {
w = false;
b = false;
}
else if (c[x + i][y + t]) {
w = false;
d = false;
}
else {
d = false;
b = false;
}
W += 1 & w;
B += 1 & b;
D += 1 & d;
if (!w && !b && !d) {
a /= 3;
for (int i = 0; i < 3; i++)
for (int t = 0; t < 3; t++)
se(x + i * a, y + t * a, a);
}
}
int main() {
cin >> n;
for (int i = 0; i < n; i++)
for (int t = 0; t < n; t++)
cin >> c[i][t];
se(0, 0, n);
cout << D << endl << W << endl << B << endl;
return 0;
}
|