結果
問題 | No.402 最も海から遠い場所 |
ユーザー | H20 |
提出日時 | 2021-12-08 16:46:57 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,134 bytes |
コンパイル時間 | 187 ms |
コンパイル使用メモリ | 82,336 KB |
実行使用メモリ | 654,344 KB |
最終ジャッジ日時 | 2024-07-16 08:00:22 |
合計ジャッジ時間 | 7,097 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 45 ms
68,820 KB |
testcase_01 | AC | 44 ms
61,420 KB |
testcase_02 | AC | 67 ms
72,288 KB |
testcase_03 | AC | 38 ms
54,396 KB |
testcase_04 | AC | 41 ms
54,524 KB |
testcase_05 | AC | 47 ms
61,688 KB |
testcase_06 | AC | 42 ms
55,204 KB |
testcase_07 | AC | 43 ms
55,664 KB |
testcase_08 | AC | 41 ms
54,468 KB |
testcase_09 | AC | 46 ms
61,948 KB |
testcase_10 | AC | 42 ms
58,792 KB |
testcase_11 | AC | 67 ms
72,948 KB |
testcase_12 | AC | 65 ms
69,488 KB |
testcase_13 | AC | 116 ms
80,720 KB |
testcase_14 | AC | 104 ms
77,876 KB |
testcase_15 | AC | 268 ms
107,624 KB |
testcase_16 | AC | 299 ms
104,104 KB |
testcase_17 | MLE | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
ソースコード
import collections H,W = map(int,input().split()) H+=2 W+=2 MAP = [] MAP.append(list([0]*W)) for _ in range(H-2): S = list(input()) L = [0]*W for i in range(1,W-1): if S[i-1]=='#': L[i]=1 MAP.append(L) MAP.append(list([0]*W)) CNT = [[10000]*W for _ in range(H)] deqx = collections.deque() deqy = 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]==1: 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]==0: deqx.append(x) deqy.append(y) cnt = -1 while len(deqx): cnt+=1 ndeqx = collections.deque() ndeqy = collections.deque() while len(deqx): i = deqx.pop() j = deqy.pop() MAP[i][j]=0 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]==1: MAP[x][y]=0 ndeqx.append(x) ndeqy.append(y) deqx = ndeqx deqy = ndeqy print(cnt)