結果

問題 No.2855 Move on Grid
ユーザー nikoro256nikoro256
提出日時 2024-08-25 14:01:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,058 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 122,040 KB
最終ジャッジ日時 2024-08-25 14:01:55
合計ジャッジ時間 22,009 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 563 ms
121,524 KB
testcase_11 AC 639 ms
121,504 KB
testcase_12 AC 584 ms
121,528 KB
testcase_13 AC 607 ms
121,392 KB
testcase_14 AC 584 ms
121,800 KB
testcase_15 AC 597 ms
121,868 KB
testcase_16 AC 592 ms
121,328 KB
testcase_17 AC 594 ms
121,684 KB
testcase_18 AC 634 ms
121,500 KB
testcase_19 AC 594 ms
121,384 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N,M,K=map(int,input().split())
A=[]
for _ in range(N):
    A.append(list(map(int,input().split())))

def nibun(f):
    left,right=0,10**9+1
    while right-left>1:
        mid=(right+left)//2
        if f(mid):
            left=mid
        else:
            right=mid
    return left

def isok(n):
    if bfs((0,0),n)<=K:
        return True
    return False

def bfs(s,n):
    dq=deque()
    high=[[10**9 for _ in range(M)] for _ in range(N)]
    if A[0][0]<n:
        high[s[0]][s[1]]=1
        dq.append([s[0],s[1],1])
    else:
        high[s[0]][s[1]]=0
        dq.append([s[0],s[1],0])
    while len(dq)!=0:
        i,j,h=dq.popleft()
        for d1,d2 in [[1,0],[-1,0],[0,1],[0,-1]]:
            x=i+d1
            y=j+d2
            if 0<=x<N and 0<=y<M and high[x][y]==10**9:
                if A[x][y]<n:
                    dq.append([x,y,h+1])
                    high[x][y]=h+1
                else:
                    dq.append([x,y,h])
                    high[x][y]=h
    return high[-1][-1]

print(nibun(isok))
0