結果

問題 No.402 最も海から遠い場所
ユーザー H20H20
提出日時 2021-12-08 16:36:03
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 913 bytes
コンパイル時間 1,061 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 627,020 KB
最終ジャッジ日時 2024-07-16 07:55:11
合計ジャッジ時間 8,219 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
67,968 KB
testcase_01 AC 54 ms
62,464 KB
testcase_02 AC 72 ms
70,144 KB
testcase_03 AC 49 ms
59,776 KB
testcase_04 AC 51 ms
60,416 KB
testcase_05 AC 56 ms
63,488 KB
testcase_06 AC 50 ms
60,672 KB
testcase_07 AC 50 ms
60,160 KB
testcase_08 AC 49 ms
59,776 KB
testcase_09 AC 55 ms
63,616 KB
testcase_10 AC 54 ms
61,568 KB
testcase_11 AC 77 ms
71,296 KB
testcase_12 AC 72 ms
70,400 KB
testcase_13 AC 122 ms
81,664 KB
testcase_14 AC 103 ms
77,568 KB
testcase_15 AC 270 ms
105,472 KB
testcase_16 AC 300 ms
106,880 KB
testcase_17 MLE -
testcase_18 MLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
import copy
H,W = map(int,input().split())
H+=2
W+=2
MAP = []
MAP.append(list('.'*(W)))
for _ in range(H-2):
    MAP.append(list('.'+input()+'.'))
MAP.append(list('.'*(W)))

CNT = [[10000]*W for _ in range(H)]

deq = collections.deque()
X = [0,1,0,-1,1,-1,1,-1]
Y = [1,0,-1,0,1,-1,-1,1]
for i in range(H):
    for j in range(W):
        if MAP[i][j]=='#':
            for k in range(8):
                x = i+X[k]
                y = j+Y[k]
                if 0<=x<H and 0<=y<W and MAP[x][y]=='.':
                    deq.append((x,y))
cnt = -1
while len(deq):
    cnt+=1
    ndeq = collections.deque()
    while len(deq):
        i,j = deq.popleft()
        MAP[i][j]='.'
        for k in range(8):
            x = i+X[k]
            y = j+Y[k]
            if 0<=x<H and 0<=y<W and MAP[x][y]=='#':
                MAP[x][y]='.'
                ndeq.append((x,y))
    deq = ndeq
print(cnt)




0