우선 섬을 둘러싼 0들을
(섬넘버, x좌표, y좌표)로 받고
섬 넘버가 다른 좌표끼리의 최소 거리를 구하는 게 끔 짰다.
시간초과가 떠서 별짓을 다했다.
10
01
같은 여러 반례들도 처리하느라 힘들었다.
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 140 141 142 143 | #include<stdio.h> #include<iostream> #include<vector> #include<queue> #include<tuple> #include<memory.h> using namespace std; int n; int map[101][101]; bool check[101][101]; int d[101][101]; int ans = 200000000; int dx[] = { 1,-1,0,0 }; int dy[] = { 0,0,1,-1 }; queue<tuple<int, int, int>>beach; vector<tuple<int, int, int>>gbeach; queue<pair<int, int>>q; vector<pair<int, int>>gq; void go(int x, int y) { queue<pair<int, int>>q2; q2.push(make_pair(x, y)); d[x][y] = 1; while (!q2.empty()) { int xx = q2.front().first; int yy = q2.front().second; q2.pop(); for (int i = 0; i < 4; i++) { int nx = xx + dx[i]; int ny = yy + dy[i]; if (nx >= 0 && ny >= 0 && nx < n && ny < n) { if (map[nx][ny] == 0 && d[nx][ny] == -1) { d[nx][ny] = d[xx][yy] + 1; q2.push(make_pair(nx, ny)); } } } } return; } void islandmake(int num, int i, int j) { queue<pair<int, int>>oneis; oneis.push(make_pair(i, j)); while (!oneis.empty()) { int x = oneis.front().first; int y = oneis.front().second; oneis.pop(); 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 < n) { if (map[nx][ny] == 1 && check[nx][ny] == false) { check[nx][ny] = true; oneis.push(make_pair(nx, ny)); } if (map[nx][ny] == 0 && check[nx][ny] == false) { beach.push(make_tuple(num, nx, ny)); gbeach.push_back(make_tuple(num, nx, ny)); } } } } return; } int main() { //freopen("Text.txt", "r", stdin); cin >> n; for (int i = 0; i < n; i++) { for (int j = 0; j < n; j++) { scanf("%1d", &map[i][j]); } } int num = 1; for (int i = 0; i < n; i++) { for (int j = 0; j < n; j++) { if (map[i][j] == 1 && check[i][j]==false) { check[i][j] = true; islandmake(num,i,j); num++; } } } while (!beach.empty()) { int numa, x, y; tie(numa, x, y) = beach.front(); memset(d, -1, sizeof(d)); go(x, y); for (int i = 0; i < gbeach.size(); i++) { int num2, x2, y2; tie(num2, x2, y2) = gbeach[i]; if (numa < num2) { if(d[x2][y2]>0) ans = min(ans,d[x2][y2]); } } beach.pop(); } cout << ans; } | cs |
'BOJ' 카테고리의 다른 글
백준 1600 / 말이 되고픈 원숭이 (0) | 2019.01.08 |
---|---|
백준 1967 / 트리의 지름 (0) | 2019.01.07 |
백준 9019 / DSLR (0) | 2019.01.05 |
백준 2573 / 빙산 (0) | 2019.01.04 |
백준 2589 / 보물섬 (0) | 2019.01.02 |