結果
問題 | No.402 最も海から遠い場所 |
ユーザー | rpy3cpp |
提出日時 | 2016-07-24 00:21:21 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 799 bytes |
コンパイル時間 | 270 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 56,484 KB |
最終ジャッジ日時 | 2024-11-06 15:37:27 |
合計ジャッジ時間 | 7,525 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
17,568 KB |
testcase_01 | AC | 30 ms
10,624 KB |
testcase_02 | AC | 31 ms
10,752 KB |
testcase_03 | AC | 30 ms
10,752 KB |
testcase_04 | AC | 30 ms
10,624 KB |
testcase_05 | AC | 29 ms
10,752 KB |
testcase_06 | AC | 30 ms
10,624 KB |
testcase_07 | AC | 30 ms
10,752 KB |
testcase_08 | AC | 29 ms
10,752 KB |
testcase_09 | AC | 29 ms
10,752 KB |
testcase_10 | AC | 29 ms
10,752 KB |
testcase_11 | AC | 30 ms
10,624 KB |
testcase_12 | AC | 31 ms
10,624 KB |
testcase_13 | AC | 43 ms
11,008 KB |
testcase_14 | AC | 36 ms
10,752 KB |
testcase_15 | AC | 99 ms
12,672 KB |
testcase_16 | AC | 175 ms
13,696 KB |
testcase_17 | AC | 1,423 ms
49,536 KB |
testcase_18 | TLE | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
ソースコード
def read_data(): H, W = map(int, input().split()) S = [input() for i in range(H)] return H, W, S def solve(H, W, S): dist = [[float('inf')] * W for i in range(H)] for w in range(W): if S[0][w] == '#': dist[0][w] = 1 else: dist[0][w] = 0 for h in range(1, H): Sh = S[h] disth = dist[h] disthm = dist[h - 1] for w, c in enumerate(Sh): if c == '#': if w: disth[w] = min(disth[w - 1], disthm[w - 1], disthm[w]) + 1 else: disth[w] = 1 else: disth[w] = 0 maxd = 0 for row in dist: maxd = max(maxd, max(row)) return (maxd + 1) // 2 H, W, S = read_data() print(solve(H, W, S))