본문 바로가기

BOJ

백준 2573 / 빙산



두 덩어리 이상으로 분리되지 않으면 프로그램은 0을 출력한다.


두 덩어리 이상으로 분리되지 않으면 프로그램은 0을 출력한다.


두 덩어리 이상으로 분리되지 않으면 프로그램은 0을 출력한다.


두 덩어리 이상으로 분리되지 않으면 프로그램은 0을 출력한다.


두 덩어리 이상으로 분리되지 않으면 프로그램은 0을 출력한다.


...


계속 시간초과가 나길래 별 짓을 다해봤다.


빙산 부분을 벡터로 받고 빙산부분만 검사하는 코드를 만들어도 시간초과가 뜨길래 찾아보니


두 덩어리 이상으로 분리되지 않으면 프로그램은 0을 출력한다.


한번에 전부 가라 앉는 경우 0을 출력하는 코드를 추가하면 시간초과가 풀린다.


두 덩어리 이상으로 분리되지 않으면 프로그램은 0을 출력한다.



코드

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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
#include<stdio.h>
#include<iostream>
#include<vector>
#include<queue>
#include<memory.h>
 
using namespace std;
 
int n, m;
int map[301][301];
int chmap[301][301];
bool check[301][301];
int year = 0;
 
int dx[] = { 1,-1,0,0 };
int dy[] = { 0,0,1,-1 };
 
 
vector<pair<intint>>ice;
vector<pair<intint>>newice;
 
int main() {
 
    freopen("Text.txt""r", stdin);
 
    cin >> n >> m;
 
    for (int i = 0; i < n; i++) {
        for (int j = 0; j < m; j++) {
            cin >> map[i][j];
            if (map[i][j] != 0) {
                ice.push_back(make_pair(i, j));
            }
        }
    }
 
    bool over = true;
 
    while (over) {
        bool allzero = true;
        memset(check, falsesizeof(check));
        memset(chmap, 0sizeof(chmap));
 
 
        year++;
        int size = newice.size();
        for (int i = 0; i < size; i++) {
            int x = newice[i].first;
            int y = newice[i].second;
            ice.push_back(make_pair(x, y));
        }
        newice.clear();
 
        for (int i = 0; i < ice.size(); i++) {
            int x = ice[i].first;
            int y = ice[i].second;
            
            int cnt = 0;
 
            for (int i = 0; i < 4; i++) {
                int nx = x + dx[i];
                int ny = y + dy[i];
 
                if (nx >= 0 && ny >= 0 && nx < n && ny < m) {
                    if (map[nx][ny] == 0) {
                        cnt++;
                    }
                }
            }
 
            if (map[x][y] - cnt > 0) {
                chmap[x][y] = map[x][y] - cnt;
                newice.push_back(make_pair(x, y));
 
            }
            else {
                chmap[x][y] = 0;
            }
        }
 
        memcpy(map, chmap, sizeof(map));
 
        for (int i = 0; i < n; i++) {
            for (int j = 0; j < m; j++) {
                if (chmap[i][j] != 0) {
                    allzero = false;
                    break;
                }
            }
        }
 
        if (allzero == false) {
 
            queue<pair<intint>>q;
 
            int x = newice[0].first;
            int y = newice[0].second;
 
            q.push(make_pair(x, y));
            check[x][y] = true;
            chmap[x][y] = 0;
 
            while (!q.empty()) {
                int x = q.front().first;
                int y = q.front().second;
                q.pop();
 
                for (int i = 0; i < 4; i++) {
                    int nx = x + dx[i];
                    int ny = y + dy[i];
 
                    if (chmap[nx][ny] != 0 && check[nx][ny] == false) {
                        check[nx][ny] = true;
                        chmap[nx][ny] = 0;
                        q.push(make_pair(nx, ny));
                    }
 
                }
            }
 
 
            for (int i = 0; i < newice.size(); i++) {
                int x = newice[i].first;
                int y = newice[i].second;
 
                if (chmap[x][y] != 0) {
                    cout << year;
                    return 0;
                }
            }
 
            ice.clear();
        }
        else {
            cout <<0;
            return 0;
        }
    }
}
cs


'BOJ' 카테고리의 다른 글

백준 2146 / 다리 만들기  (0) 2019.01.05
백준 9019 / DSLR  (0) 2019.01.05
백준 2589 / 보물섬  (0) 2019.01.02
백준 7569 / 토마토  (0) 2019.01.02
백준 13913 / 숨바꼭질 4  (0) 2019.01.01