結果

問題 No.2855 Move on Grid
ユーザー titiatitia
提出日時 2024-09-02 00:21:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,051 ms / 3,000 ms
コード長 865 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 82,008 KB
実行使用メモリ 151,508 KB
最終ジャッジ日時 2024-09-02 00:21:37
合計ジャッジ時間 29,687 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 255 ms
81,316 KB
testcase_01 AC 322 ms
84,700 KB
testcase_02 AC 261 ms
80,400 KB
testcase_03 AC 192 ms
79,348 KB
testcase_04 AC 182 ms
78,668 KB
testcase_05 AC 265 ms
80,544 KB
testcase_06 AC 239 ms
83,028 KB
testcase_07 AC 119 ms
77,832 KB
testcase_08 AC 236 ms
79,464 KB
testcase_09 AC 158 ms
79,140 KB
testcase_10 AC 666 ms
151,192 KB
testcase_11 AC 676 ms
151,396 KB
testcase_12 AC 670 ms
151,320 KB
testcase_13 AC 705 ms
151,508 KB
testcase_14 AC 677 ms
151,416 KB
testcase_15 AC 695 ms
151,196 KB
testcase_16 AC 669 ms
151,200 KB
testcase_17 AC 790 ms
151,360 KB
testcase_18 AC 680 ms
151,156 KB
testcase_19 AC 685 ms
151,504 KB
testcase_20 AC 842 ms
132,900 KB
testcase_21 AC 952 ms
130,524 KB
testcase_22 AC 834 ms
131,928 KB
testcase_23 AC 825 ms
133,848 KB
testcase_24 AC 855 ms
133,296 KB
testcase_25 AC 944 ms
133,600 KB
testcase_26 AC 808 ms
131,392 KB
testcase_27 AC 873 ms
130,400 KB
testcase_28 AC 837 ms
130,964 KB
testcase_29 AC 807 ms
132,144 KB
testcase_30 AC 1,004 ms
130,752 KB
testcase_31 AC 906 ms
129,096 KB
testcase_32 AC 830 ms
134,152 KB
testcase_33 AC 825 ms
136,144 KB
testcase_34 AC 966 ms
133,236 KB
testcase_35 AC 872 ms
133,272 KB
testcase_36 AC 909 ms
126,776 KB
testcase_37 AC 867 ms
134,116 KB
testcase_38 AC 1,029 ms
130,720 KB
testcase_39 AC 1,051 ms
129,708 KB
権限があれば一括ダウンロードができます

ソースコード

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