結果
問題 | No.157 2つの空洞 |
ユーザー | tnodino |
提出日時 | 2022-06-18 14:23:18 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,007 bytes |
コンパイル時間 | 257 ms |
コンパイル使用メモリ | 82,308 KB |
実行使用メモリ | 799,616 KB |
最終ジャッジ日時 | 2024-10-10 03:11:06 |
合計ジャッジ時間 | 4,960 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
60,484 KB |
testcase_01 | AC | 42 ms
54,584 KB |
testcase_02 | AC | 41 ms
54,524 KB |
testcase_03 | AC | 41 ms
54,272 KB |
testcase_04 | AC | 41 ms
54,932 KB |
testcase_05 | AC | 40 ms
53,876 KB |
testcase_06 | AC | 42 ms
55,360 KB |
testcase_07 | AC | 42 ms
56,000 KB |
testcase_08 | AC | 49 ms
55,840 KB |
testcase_09 | AC | 42 ms
55,464 KB |
testcase_10 | AC | 42 ms
54,284 KB |
testcase_11 | AC | 43 ms
55,052 KB |
testcase_12 | AC | 43 ms
54,680 KB |
testcase_13 | AC | 49 ms
61,448 KB |
testcase_14 | AC | 43 ms
54,868 KB |
testcase_15 | AC | 59 ms
67,996 KB |
testcase_16 | AC | 51 ms
63,616 KB |
testcase_17 | MLE | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
from collections import deque INF = 1<<16 W,H = map(int,input().split()) C = [list(input()) for _ in range(H)] x = 0 y = 0 for i in range(H): for j in range(W): if C[i][j] == '.': x = i y = j Queue = deque() Queue2 = deque() Queue2.append((x, y)) cost = [[INF] * W for _ in range(H)] dx = [1, -1, 0, 0] dy = [0, 0, 1, -1] while Queue2: x,y = Queue2.popleft() cost[x][y] = 0 Queue.append((x, y)) for i in range(4): nx,ny = x+dx[i],y+dy[i] if C[nx][ny] == '.' and cost[nx][ny] == INF: Queue2.append((nx, ny)) ans = INF while Queue: x,y = Queue.popleft() for i in range(4): nx,ny = x+dx[i],y+dy[i] if nx < 0 or H <= nx or ny < 0 or W <= ny: continue if C[nx][ny] == '#' and cost[x][y] + 1 < cost[nx][ny]: cost[nx][ny] = cost[x][y] + 1 Queue.append((nx, ny)) elif C[nx][ny] == '.' and cost[nx][ny] == INF: ans = min(ans, cost[x][y]) print(ans)