본문 바로가기

알고리즘 관련/BOJ

BOJ)2636 치즈

문제: icpc.me/2636


공기와 닿는 부분의 치즈가 하루마다 녹을 때 치즈가 다 녹는데 걸리는 시간과 전부 다 녹기 직전 치즈의 개수를 출력하는 문제이다.


bfs를 이용하여 공기와 닿는 부분을 기록해준 뒤 날이 바뀔 때 치즈를  갱신해주면 된다.


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
#include <cstdio>
#include <algorithm>
#include <queue>
#include <cstring>
using namespace std;
int n, m, a[101][101], b[101][101], r, f;
int dx[] = { 0,0,1,-};
int dy[] = { 1,-1,0,};
int disc[101][101];
bool chk(int x, int y) {
    return <= x&&< n && <= y&&< m;
}
bool existCheese() {
    int ret = 0;
    for (int i = 0; i < n; i++) {
        for (int j = 0; j < m; j++) {
            ret += a[i][j];
        }
    }
    if (ret)f = ret;
    return ret;
}
void bfs() {
    memset(disc, 0sizeof(disc));
    queue<pair<intint>> qu;
    for (int i = 0; i < n; i++) {
        disc[i][0= true;
        disc[i][m - 1= true;
        qu.push({ i,});
        qu.push({ i,m - });
    }
    for (int i = 0; i < m; i++) {
        disc[0][i] = true;
        disc[n - 1][i] = true;
        if (i)
            qu.push({ 0,i });
        if (i != m - 1)
            qu.push({ n - 1,i });
    }
    while (qu.size()) {
        int x = qu.front().first;
        int y = qu.front().second;
        qu.pop();
        for (int i = 0; i < 4; i++) {
            int cx = x + dx[i];
            int cy = y + dy[i];
            if (chk(cx, cy)) {
                if (!a[cx][cy] && !disc[cx][cy]) {
                    qu.push({ cx,cy });
                    disc[cx][cy] = true;
                }
                else if (a[cx][cy]) {
                    b[cx][cy] = 1;
                }
            }
        }
    }
}
void nextday() {
    bfs();
    for (int i = 0; i < n; i++) {
        for (int j = 0; j < m; j++)
            a[i][j] &= (b[i][j] ^ 1);
    }
}
int main() {
    scanf("%d%d"&n, &m);
    for (int i = 0; i < n; i++) {
        for (int j = 0; j < m; j++
            scanf("%d"&a[i][j]);
    }
    while (existCheese()) {
        r++;
        nextday();
    }
    printf("%d\n%d\n", r, f);
    return 0;
}
cs


'알고리즘 관련 > BOJ' 카테고리의 다른 글

BOJ)9370 미확인 도착지  (0) 2017.03.08
BOJ)1252 이진수 덧셈  (0) 2017.03.07
BOJ)1629 곱셈  (0) 2017.03.05
BOJ)1201 NMK  (0) 2017.03.05
BOJ)12026 BOJ 거리  (0) 2017.03.01