結果
問題 | No.157 2つの空洞 |
ユーザー | data9824 |
提出日時 | 2015-05-12 04:06:25 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,429 bytes |
コンパイル時間 | 511 ms |
コンパイル使用メモリ | 60,372 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-05 23:38:09 |
合計ジャッジ時間 | 1,444 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 1 ms
5,376 KB |
testcase_19 | AC | 1 ms
5,376 KB |
ソースコード
#include <iostream> #include <limits> #include <cmath> using namespace std; int w, h; char c[20][20]; void fill(int x, int y, char filling) { c[x][y] = filling; if (x > 0 && c[x - 1][y] == '.') { fill(x - 1, y, filling); } if (x < w - 1 && c[x + 1][y] == '.') { fill(x + 1, y, filling); } if (y > 0 && c[x][y - 1] == '.') { fill(x, y - 1, filling); } if (y < h - 1 && c[x][y + 1] == '.') { fill(x, y + 1, filling); } } int main() { cin >> w >> h; for (int y = 0; y < h; ++y) { for (int x = 0; x < w; ++x) { cin >> c[x][y]; } } bool found = false; for (int y = 0; y < h && !found; ++y) { for (int x = 0; x < w && !found; ++x) { if (c[x][y] == '.') { fill(x, y, '1'); found = true; } } } found = false; for (int y = 0; y < h && !found; ++y) { for (int x = 0; x < w && !found; ++x) { if (c[x][y] == '.') { fill(x, y, '2'); found = true; } } } int result = numeric_limits<int>::max(); for (int y0 = 0; y0 < h; ++y0) { for (int y1 = 0; y1 < h; ++y1) { for (int x0 = 0; x0 < w; ++x0) { for (int x1 = 0; x1 < w; ++x1) { if (c[x0][y1] != '#' && c[x1][y0] != '#' && c[x0][y1] != c[x1][y0]) { int broken = (y0 == y1) ? max<int>(0, abs(x1 - x0) - 1) : (x0 == x1) ? max<int>(0, abs(y1 - y0) - 1) : abs(x1 - x0) + abs(y1 - y0) - 1; result = min(result, broken); } } } } } cout << result << endl; return 0; }