結果

問題 No.157 2つの空洞
ユーザー mlihua09mlihua09
提出日時 2020-09-03 02:32:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,400 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 144,768 KB
最終ジャッジ日時 2024-11-22 08:15:24
合計ジャッジ時間 20,896 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
16,128 KB
testcase_01 AC 34 ms
137,728 KB
testcase_02 AC 32 ms
16,000 KB
testcase_03 AC 33 ms
141,568 KB
testcase_04 AC 33 ms
15,872 KB
testcase_05 AC 32 ms
144,768 KB
testcase_06 TLE -
testcase_07 AC 33 ms
135,552 KB
testcase_08 AC 32 ms
16,128 KB
testcase_09 AC 33 ms
142,208 KB
testcase_10 AC 34 ms
16,128 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 36 ms
10,880 KB
testcase_15 AC 203 ms
17,664 KB
testcase_16 AC 1,321 ms
64,384 KB
testcase_17 AC 44 ms
11,008 KB
testcase_18 TLE -
testcase_19 TLE -
権限があれば一括ダウンロードができます

ソースコード

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