結果

問題 No.2855 Move on Grid
ユーザー noriocnorioc
提出日時 2024-08-25 17:37:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,995 ms / 3,000 ms
コード長 1,205 bytes
コンパイル時間 536 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 134,512 KB
最終ジャッジ日時 2024-08-25 17:38:33
合計ジャッジ時間 39,746 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 408 ms
84,208 KB
testcase_01 AC 414 ms
88,096 KB
testcase_02 AC 262 ms
82,400 KB
testcase_03 AC 306 ms
80,732 KB
testcase_04 AC 230 ms
79,260 KB
testcase_05 AC 365 ms
83,720 KB
testcase_06 AC 389 ms
84,652 KB
testcase_07 AC 158 ms
78,228 KB
testcase_08 AC 343 ms
81,968 KB
testcase_09 AC 232 ms
79,552 KB
testcase_10 AC 1,003 ms
120,524 KB
testcase_11 AC 1,048 ms
120,720 KB
testcase_12 AC 880 ms
120,796 KB
testcase_13 AC 1,012 ms
120,308 KB
testcase_14 AC 899 ms
120,364 KB
testcase_15 AC 885 ms
120,868 KB
testcase_16 AC 865 ms
120,468 KB
testcase_17 AC 868 ms
120,328 KB
testcase_18 AC 1,023 ms
120,680 KB
testcase_19 AC 945 ms
120,428 KB
testcase_20 AC 1,239 ms
115,144 KB
testcase_21 AC 1,995 ms
132,500 KB
testcase_22 AC 1,381 ms
117,304 KB
testcase_23 AC 1,099 ms
114,608 KB
testcase_24 AC 1,066 ms
114,916 KB
testcase_25 AC 1,171 ms
128,928 KB
testcase_26 AC 1,042 ms
114,944 KB
testcase_27 AC 978 ms
114,576 KB
testcase_28 AC 1,071 ms
113,664 KB
testcase_29 AC 1,209 ms
115,124 KB
testcase_30 AC 1,189 ms
127,112 KB
testcase_31 AC 932 ms
128,764 KB
testcase_32 AC 1,073 ms
134,248 KB
testcase_33 AC 948 ms
132,740 KB
testcase_34 AC 1,158 ms
130,800 KB
testcase_35 AC 1,062 ms
134,192 KB
testcase_36 AC 378 ms
93,096 KB
testcase_37 AC 1,230 ms
131,860 KB
testcase_38 AC 1,190 ms
134,512 KB
testcase_39 AC 1,175 ms
125,184 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()
        if r == N-1 and c == M-1: break

        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