結果

問題 No.157 2つの空洞
ユーザー mlihua09mlihua09
提出日時 2020-09-03 02:32:15
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,400 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 712,452 KB
最終ジャッジ日時 2024-11-22 08:14:11
合計ジャッジ時間 21,340 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
58,880 KB
testcase_01 MLE -
testcase_02 MLE -
testcase_03 AC 52 ms
66,980 KB
testcase_04 MLE -
testcase_05 AC 53 ms
66,976 KB
testcase_06 MLE -
testcase_07 AC 62 ms
70,400 KB
testcase_08 MLE -
testcase_09 AC 52 ms
66,720 KB
testcase_10 AC 63 ms
66,432 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 66 ms
68,480 KB
testcase_15 AC 182 ms
102,912 KB
testcase_16 AC 927 ms
277,376 KB
testcase_17 AC 79 ms
76,928 KB
testcase_18 TLE -
testcase_19 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #


W, H = map(int, input().split())
C = [[0 if i == '#' else 1 for i in input()] for j in range(H)]
from collections import deque
que = deque([])

for i in range(H):
    for j in range(W):
        if C[i][j]:
            x = deque([i, j])
            C[i][j] = 0
            while x:
                q1, q2 = x.popleft(), x.popleft()
                if q1 > 0 and C[q1 - 1][q2]:
                    C[q1 - 1][q2] = 0
                    x.append(q1 - 1)
                    x.append(q2)
                if q2 > 0 and C[q1][q2 - 1]:
                    C[q1][q2 - 1] = 0
                    x.append(q1)
                    x.append(q2 - 1)
                if q1 < H - 1 and C[q1 + 1][q2]:
                    C[q1 + 1][q2] = 0
                    x.append(q1 + 1)
                    x.append(q2)
                if q2 < W - 1 and C[q1][q2 + 1]:
                    C[q1][q2 + 1] = 0
                    x.append(q1)
                    x.append(q2 + 1)
                que.extend([q1, q2, 0])
            break
    if que:
        break
while que:
    q1, q2, q3 = que.popleft(), que.popleft(), que.popleft()
    
    if C[q1][q2]:
        print(q3 - 1)
        break
    if q1 > 0:
        que.extend([q1 - 1, q2, q3 + 1])
    if q2 > 0:
        que.extend([q1, q2 - 1, q3 + 1])
    if q1 < H - 1:
        que.extend([q1 + 1, q2, q3 + 1])
    if q2 < W - 1:
        que.extend([q1, q2 + 1, q3 + 1])
0