結果
問題 | No.157 2つの空洞 |
ユーザー | moti |
提出日時 | 2015-04-15 01:48:38 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,257 bytes |
コンパイル時間 | 583 ms |
コンパイル使用メモリ | 67,756 KB |
実行使用メモリ | 561,300 KB |
最終ジャッジ日時 | 2024-07-04 14:33:01 |
合計ジャッジ時間 | 4,132 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,756 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,944 KB |
testcase_09 | AC | 1 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 1 ms
6,940 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 1 ms
6,940 KB |
testcase_15 | AC | 1 ms
6,940 KB |
testcase_16 | WA | - |
testcase_17 | MLE | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
#include <iostream> #include <queue> #include <tuple> using namespace std; #define REP(i,a,b) for(int i=a;i<(int)b;i++) #define rep(i,n) REP(i,0,n) typedef long long ll; int W, H; char G[22][22]; int F[22][22]; bool vis[22][22]; int dx[4] = {-1,0,1,0}; int dy[4] = {0,-1,0,1}; inline bool valid(int x, int y) { return 0<=x&&x<W && 0<=y&&y<H; } inline bool balid(int x, int y) { return G[y][x] == '.'; } void bfs(int x, int y, int key) { std::queue<std::pair<int, int>> q; q.emplace(x, y); vis[y][x] = 1; while(!q.empty()) { F[y][x] = key; x = q.front().first, y = q.front().second; q.pop(); rep(k, 4) { int nx = x+dx[k], ny = y+dy[k]; if(!valid(nx, ny) || !balid(nx, ny)) { continue; } if(vis[ny][nx]) { continue; } vis[y][x] = 1; q.emplace(nx, ny); } } } int main() { cin >> W >> H; rep(i, H) rep(j, W) { cin >> G[i][j]; } int key = 1; rep(i, H) rep(j, W) { if(G[i][j] == '.' && F[i][j] == 0) { bfs(j, i, key++); } } int ans = 1<<29; rep(i, H) rep(j, W) { if(F[i][j] == 1) { rep(k, H) rep(l, W) { if(F[k][l] == 2) { ans = min(ans, abs(k-i)+abs(l-j)-1); } } } } cout << ans << endl; return 0; }