結果

問題 No.2855 Move on Grid
ユーザー noriocnorioc
提出日時 2024-08-25 17:35:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,430 ms / 3,000 ms
コード長 1,165 bytes
コンパイル時間 427 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 135,544 KB
最終ジャッジ日時 2024-08-25 17:36:02
合計ジャッジ時間 33,817 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 397 ms
84,176 KB
testcase_01 AC 392 ms
88,576 KB
testcase_02 AC 327 ms
85,284 KB
testcase_03 AC 237 ms
80,320 KB
testcase_04 AC 260 ms
79,824 KB
testcase_05 AC 321 ms
83,468 KB
testcase_06 AC 324 ms
84,488 KB
testcase_07 AC 138 ms
78,204 KB
testcase_08 AC 346 ms
82,596 KB
testcase_09 AC 203 ms
79,368 KB
testcase_10 AC 762 ms
119,900 KB
testcase_11 AC 906 ms
120,696 KB
testcase_12 AC 896 ms
120,668 KB
testcase_13 AC 758 ms
120,552 KB
testcase_14 AC 871 ms
120,904 KB
testcase_15 AC 760 ms
120,428 KB
testcase_16 AC 750 ms
120,168 KB
testcase_17 AC 774 ms
119,884 KB
testcase_18 AC 859 ms
120,540 KB
testcase_19 AC 873 ms
120,308 KB
testcase_20 AC 1,028 ms
114,784 KB
testcase_21 AC 1,430 ms
131,972 KB
testcase_22 AC 1,040 ms
117,128 KB
testcase_23 AC 854 ms
114,660 KB
testcase_24 AC 898 ms
114,756 KB
testcase_25 AC 925 ms
129,432 KB
testcase_26 AC 873 ms
114,652 KB
testcase_27 AC 1,013 ms
117,008 KB
testcase_28 AC 920 ms
113,992 KB
testcase_29 AC 1,053 ms
115,228 KB
testcase_30 AC 1,060 ms
126,848 KB
testcase_31 AC 926 ms
130,420 KB
testcase_32 AC 940 ms
132,816 KB
testcase_33 AC 924 ms
133,704 KB
testcase_34 AC 1,081 ms
132,692 KB
testcase_35 AC 1,037 ms
135,544 KB
testcase_36 AC 992 ms
131,388 KB
testcase_37 AC 1,072 ms
132,384 KB
testcase_38 AC 1,035 ms
134,196 KB
testcase_39 AC 1,042 ms
127,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
from collections.abc import Iterator


def neighbors4(r: int, c: int) -> Iterator[tuple[int, int]]:
    for dr, dc in [(-1, 0), (1, 0), (0, -1), (0, 1)]:
        nr = r + dr
        nc = c + dc
        if not (0 <= nr < N and 0 <= nc < M): continue
        yield nr, nc


INF = 1 << 60
N, M, K = map(int, input().split())
A = []
for _ in range(N):
    A.append(list(map(int, input().split())))


# 最小スコア m として到達可能か?(K 回だけマスを書き換え可能)
def bfs01(m: int) -> bool:
    g = [[INF] * M for _ in range(N)]
    q = deque([(0, 0)])
    g[0][0] = 1 if A[0][0] < m else 0

    while q:
        r, c = q.popleft()

        for nr, nc in neighbors4(r, c):
            if g[nr][nc] != INF: continue
            if A[nr][nc] < m:
                g[nr][nc] = g[r][c] + 1
                q.append((nr, nc))
            else:
                g[nr][nc] = g[r][c]
                q.appendleft((nr, nc))

    return g[N-1][M-1] <= K


lo = 1
hi = 10 ** 9
ans = lo
while lo <= hi:
    m = (lo + hi) // 2
    if bfs01(m):
        lo = m + 1
        ans = max(ans, m)
    else:
        hi = m - 1

print(ans)
0