結果
問題 | No.157 2つの空洞 |
ユーザー | nanae |
提出日時 | 2017-02-16 16:57:20 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,516 bytes |
コンパイル時間 | 257 ms |
コンパイル使用メモリ | 13,056 KB |
実行使用メモリ | 11,136 KB |
最終ジャッジ日時 | 2024-06-09 12:50:07 |
合計ジャッジ時間 | 1,622 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
ソースコード
import sys from collections import deque def debug(x, table): for name, val in table.items(): if x is val: print('DEBUG:{} -> {}'.format(name, val), file=sys.stderr) return None def solve(): W, H = map(int, input().split()) C = [list(input()) for i in range(H)] col = 1 for i in range(H): for j in range(W): if C[i][j] == '#': C[i][j] = 0 elif C[i][j] == '.': bfs_color(W, H, C, i, j, col) col += 1 else: pass for i in range(H): print(*C[i]) cave1 = [] cave2 = [] for i in range(H): for j in range(W): if C[i][j] == 1: cave1.append((i, j)) elif C[i][j] == 2: cave2.append((i, j)) min_d = 1000 for a in cave1: for b in cave2: min_d = min(min_d, dist(a, b) - 1) print(min_d) def dist(a, b): return abs(a[0] - b[0]) + abs(a[1] - b[1]) def bfs_color(W, H, C, i, j, col): nxt = deque([(i, j)]) while nxt: y, x = nxt.pop() C[y][x] = col if x - 1 >= 0 and C[y][x-1] == '.': nxt.append((y, x-1)) if x + 1 < W and C[y][x+1] == '.': nxt.append((y, x+1)) if y - 1 >= 0 and C[y-1][x] == '.': nxt.append((y-1, x)) if y + 1 < H and C[y+1][x] == '.': nxt.append((y+1, x)) return None if __name__ == '__main__': solve()