結果

問題 No.2855 Move on Grid
ユーザー titiatitia
提出日時 2024-09-02 00:20:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 890 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 19,100 KB
最終ジャッジ日時 2024-09-02 00:20:56
合計ジャッジ時間 22,979 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,841 ms
19,100 KB
testcase_01 AC 2,598 ms
13,056 KB
testcase_02 AC 1,785 ms
12,544 KB
testcase_03 AC 1,202 ms
11,520 KB
testcase_04 AC 787 ms
11,648 KB
testcase_05 AC 1,753 ms
12,032 KB
testcase_06 AC 1,922 ms
12,288 KB
testcase_07 AC 209 ms
10,880 KB
testcase_08 AC 1,406 ms
12,032 KB
testcase_09 AC 850 ms
11,264 KB
testcase_10 TLE -
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 = sys.stdin.readline

from collections import deque

N,M,K=map(int,input().split())

MAP=[list(map(int,input().split())) for i in range(N)]

OK=0
NG=10**9+1

while NG>OK+1:
    mid=(OK+NG)//2

    DP=[[1<<63]*M for i in range(N)]

    if MAP[0][0]<mid:
        DP[0][0]=1
    else:
        DP[0][0]=0

    Q=deque()
    Q.append((0,0))

    while Q:
        x,y=Q.popleft()

        for z,w in [(x+1,y),(x-1,y),(x,y+1),(x,y-1)]:
            if 0<=z<N and 0<=w<M:
                if MAP[z][w]<mid:
                    if DP[z][w]>DP[x][y]+1:
                        DP[z][w]=DP[x][y]+1
                        Q.append((z,w))
                else:
                    if DP[z][w]>DP[x][y]:
                        DP[z][w]=DP[x][y]
                        Q.appendleft((z,w))

    if DP[-1][-1]<=K:
        OK=mid
    else:
        NG=mid

print(OK)

                

    
0