[백준][BOJ][C++][17136번] 색종이 붙이기
본문 바로가기

알고리즘 문제풀기/백준

[백준][BOJ][C++][17136번] 색종이 붙이기

반응형

https://www.acmicpc.net/problem/17136

 

17136번: 색종이 붙이기

<그림 1>과 같이 정사각형 모양을 한 다섯 종류의 색종이가 있다. 색종이의 크기는 1×1, 2×2, 3×3, 4×4, 5×5로 총 다섯 종류가 있으며, 각 종류의 색종이는 5개씩 가지고 있다. <그림 1> 색종이를 크기가 10×10인 종이 위에 붙이려고 한다. 종이는 1×1 크기의 칸으로 나누어져 있으며, 각각의 칸에는 0 또는 1이 적혀 있다. 1이 적힌 칸은 모두 색종이로 덮여져야 한다. 색종이를 붙일 때는 종이의 경계 밖으로 나가서는 안되고, 겹쳐

www.acmicpc.net

dfs를 이용하여 풀었습니다.

dfs를 사용할때 가지치기를 똑바로 하지 않으면 시간초과가 발생하여 아래 코드에서 if (out == true) break; 이부분이 중요하였습니다.

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
#include<iostream>
#include<algorithm>
using namespace std;
 
int ans, cnt;
int paper[11][11];
int paper_cnt[6];
 
bool pa_ch(int x, int y, int sizee) {
    for (int Y = y; Y < y + sizee; Y++) {
        for (int X = x; X <+ sizee; X++) {
            if (paper[Y][X] == 0)
                return false;
        }
    }
    return true;
}
 
void dfs(int ans_temp, int x, int y, int cnt_temp) {
    if (ans_temp > ans) return;
    if (cnt_temp == cnt) {
        ans = ans_temp;
        return;
    }
    if (ans_temp == 25return;
    bool out = false;
    for (int Y = y; Y < 10; Y++) {
        for (int X = x; X < 10; X++) {
            if (paper[Y][X] == 1) {
                out = true;
                for (int i = 5; i >= 1; i--) { //1x1부터 5x5까지 탐색
                    if (paper_cnt[i] == 0continue;
                    if (paper_cnt[i] == 0 && i == 1return;
                    if (!pa_ch(X, Y, i)) continue;
 
                    paper_cnt[i]--;
                    int gob = i*i;
                    for (int YY = Y; YY < Y + i; YY++) {
                        for (int XX = X; XX < X + i; XX++) {
                            paper[YY][XX] = 0;
                        } //for XX
                    } // for YY
 
                    dfs(ans_temp + 1, X, Y, cnt_temp + gob);
 
                    paper_cnt[i]++;
                    for (int YY = Y; YY < Y + i; YY++) {
                        for (int XX = X; XX <+ i; XX++) {
                            paper[YY][XX] = 1;
                        }//for XX
                    }//for YY
 
                }  //for i
            } //if paper
            if (out == truebreak;
        } //for X
        if (out == truebreak;
        x = 0;
    } //for Y
}
 
int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(0); cout.tie(0);
    cnt = 0;
    for (int i = 1; i < 6; i++) paper_cnt[i] = 5//색종이 갯수 넣기
 
    for (int Y = 0; Y < 10; Y++) {
        for (int X = 0; X < 10; X++) {
            scanf("%d"&paper[Y][X]);
            //cin >> paper[Y][X];
            if (paper[Y][X] == 1) cnt++;
        }
    }
    ans = 40;
    dfs(0000);
    if (ans == 40)
        printf("-1");
        //cout << "-1";
    else
        printf("%d",ans);
        //cout << ans;
}
http://colorscripter.com/info#e" target="_blank" style="color:#e5e5e5text-decoration:none">Colored by Color Scripter
http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs

 

반응형