반응형

문제 링크:https://www.acmicpc.net/problem/1780

 

1780번: 종이의 개수

N×N크기의 행렬로 표현되는 종이가 있다. 종이의 각 칸에는 -1, 0, 1 중 하나가 저장되어 있다. 우리는 이 행렬을 다음과 같은 규칙에 따라 적절한 크기로 자르려고 한다. 만약 종이가 모두 같은 수

www.acmicpc.net

 

<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
#include <iostream>
#include <string>
#include <algorithm>
#include <queue>
#include <vector>
#include <stack>
#include <utility>
#include <climits>
#include <cmath>
#include <deque>
 
using namespace std;
 
int board[2187][2187];
int res[3];

// x,y에서 시작해서 가로 세로 길이가 각각 n인 종이
void solve(int x, int y, int n) {
    if (n == 1) {
        res[board[x][y] + 1]++;
        return;
    }
    int flag = board[x][y];
    bool run = false;
    for (int i = x; i < x + n; i++) {
        for (int j = y; j < y + n; j++) {
            if (flag != board[i][j]) run = true;
        }
    }
    if (!run) {
        res[board[x][y] + 1]++;
        return;
    }
    solve(x, y, n / 3);
    solve(x, y + n / 3, n / 3);
    solve(x, y + 2 * n / 3, n / 3);
 
    solve(x + n / 3, y, n / 3);
    solve(x + n / 3, y + n / 3, n / 3);
    solve(x + n / 3, y + 2 * n / 3, n / 3);
 
    solve(x + 2 * n / 3, y, n / 3);
    solve(x + 2 * n / 3, y + n / 3, n / 3);
    solve(x + 2 * n / 3, y + 2 * n / 3, n / 3);
}
 
int main(void) {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
 
    int n; cin >> n;
    for (int i = 0; i < n; i++) {
        for (int j = 0; j < n; j++) {
            cin >> board[i][j];
        }
    }
    solve(00, n);
 
    for (int i = 0; i < 3; i++)cout << res[i] << '\n';
 
    
    return 0;
}
 
cs

 

반응형

'알고리즘 문제풀이 > 백준' 카테고리의 다른 글

[백준 1992번] 쿼드트리  (0) 2021.12.27
[백준 2630번] 색종이 만들기  (0) 2021.12.27
[백준 1766번] 문제집  (0) 2021.12.20
[뱍쥰 1005번] ACM Craft  (0) 2021.12.20
[백준 1516번] 게임 개발  (0) 2021.12.20

+ Recent posts