結果

問題 No.2855 Move on Grid
ユーザー tassei903tassei903
提出日時 2024-08-25 13:46:33
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,366 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 1,058,540 KB
最終ジャッジ日時 2024-08-25 13:46:43
合計ジャッジ時間 8,949 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
n,m,k = na()
a = [na() for i in range(n)]

ok = 0
ng = 10 ** 9 + 1
from collections import deque
while (ng - ok) > 1:
    mid = (ok + ng) // 2
    dp = [[10 ** 18] * m for i in range(n)]
    if a[0][0] >= mid:
        dq = deque([(0, 0, 0)])
        dp[0][0] = 0
    else:
        dq = deque([(1, 0, 0)])
        dp[0][0] = 1
    while dq:
        c, x, y = dq.pop()
        if dp[x][y] < c:
            continue
        for dx, dy in [(1, 0), (0, 1), (-1, 0), (0, -1)]:
            nx, ny = x + dx, y + dy
            if 0 <= nx < n and 0 <= ny < m:
                if a[nx][ny] < mid:
                    nc = c + 1
                    if dp[nx][ny] > nc:
                        dp[nx][ny] = nc
                        dq.append((nc, nx, ny))
                else:
                    nc = c
                    if dp[nx][ny] > nc:
                        dp[nx][ny] = nc
                        dq.appendleft((nc, nx, ny))


    if dp[n - 1][m - 1] <= k:
        ok = mid
    else:
        ng = mid

print(ok)
0