結果
問題 | No.157 2つの空洞 |
ユーザー | nanophoto12 |
提出日時 | 2016-02-19 22:49:17 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 3,112 bytes |
コンパイル時間 | 711 ms |
コンパイル使用メモリ | 77,492 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-22 12:22:39 |
合計ジャッジ時間 | 1,395 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,948 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | AC | 2 ms
6,940 KB |
testcase_17 | AC | 2 ms
6,944 KB |
testcase_18 | AC | 2 ms
6,940 KB |
testcase_19 | AC | 2 ms
6,944 KB |
ソースコード
#include <queue> #include <algorithm> #include <vector> #include <iostream> #include <numeric> #include <tuple> using namespace std; typedef long long int ll; typedef pair<int, int> pii; typedef tuple<int, int, int> tiii; typedef vector<int> vi; #define REP(i,x) for(int i=0;i<(int)(x);i++) #define ALL(container) (container).begin(), (container).end() pii shifts[] = {{1,0},{0,1},{-1,0},{0,-1}}; int f[200][200]; int visit[200][200]; vector<pii> vs[3]; int main(int argc, char *argv[]){ ios::sync_with_stdio(false); int w,h; cin >> w >> h; REP(i, 200) REP(j, 200) f[i][j] = -2; REP(i, h) { string s; cin >> s; REP(j, w) { if(s[j] == '.') { f[i + 1][j + 1] = -1; } else { f[i + 1][j + 1] = 0; } } } int id = 1; REP(i, h+2) REP(j, w+2) { int sh = i + 1; int sw = j + 1; if(f[sh][sw] != -1) { continue; } queue<tiii> q; q.push(make_tuple(sw,sh, id)); f[sh][sw] = id; vs[id].emplace_back(sw,sh); while(!q.empty()) { const auto t = q.front(); q.pop(); for(int s = 0;s < 4;s++) { auto x = get<0>(t) + shifts[s].first; auto y = get<1>(t) + shifts[s].second; if(f[y][x] != -1) { continue; } f[y][x] = id; vs[id].emplace_back(x,y); q.push(make_tuple(x,y,id)); } } id++; } { REP(i, 200) REP(j, 200) visit[i][j] = 0; queue<tiii> q; for(int i = 0;i < vs[1].size();i++) { auto t = vs[1][i]; for(int s = 0;s < 4;s++) { auto x = get<0>(t) + shifts[s].first; auto y = get<1>(t) + shifts[s].second; if(f[y][x] == 0) { if(!visit[y][x]) { q.push(make_tuple(x,y,1)); visit[y][x] = true; } } } } //REP(i, h+2) //{ // REP(j, w+2) cout << f[i][j]; // cout << endl; //} while(!q.empty()) { const auto t = q.front(); q.pop(); auto c = get<2>(t); for(int s = 0;s < 4;s++) { auto x = get<0>(t) + shifts[s].first; auto y = get<1>(t) + shifts[s].second; if(f[y][x] == 0) { if(!visit[y][x]) { q.push(make_tuple(x,y,c+1)); visit[y][x] = true; } } if(f[y][x] == 2) { cout << c << endl; return 0; } } } } return 0; }