結果

問題 No.2855 Move on Grid
ユーザー nikoro256nikoro256
提出日時 2024-08-25 14:03:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 925 ms / 3,000 ms
コード長 1,062 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,792 KB
実行使用メモリ 197,656 KB
最終ジャッジ日時 2024-08-25 14:04:22
合計ジャッジ時間 26,258 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 227 ms
83,100 KB
testcase_01 AC 279 ms
90,572 KB
testcase_02 AC 209 ms
90,060 KB
testcase_03 AC 173 ms
78,740 KB
testcase_04 AC 142 ms
78,016 KB
testcase_05 AC 210 ms
82,504 KB
testcase_06 AC 221 ms
83,884 KB
testcase_07 AC 84 ms
76,668 KB
testcase_08 AC 174 ms
80,544 KB
testcase_09 AC 138 ms
78,220 KB
testcase_10 AC 629 ms
121,504 KB
testcase_11 AC 662 ms
121,704 KB
testcase_12 AC 679 ms
122,064 KB
testcase_13 AC 666 ms
121,944 KB
testcase_14 AC 653 ms
121,552 KB
testcase_15 AC 627 ms
121,936 KB
testcase_16 AC 634 ms
121,904 KB
testcase_17 AC 623 ms
121,644 KB
testcase_18 AC 624 ms
121,988 KB
testcase_19 AC 595 ms
122,196 KB
testcase_20 AC 742 ms
119,820 KB
testcase_21 AC 752 ms
139,568 KB
testcase_22 AC 769 ms
120,060 KB
testcase_23 AC 730 ms
118,752 KB
testcase_24 AC 698 ms
121,144 KB
testcase_25 AC 851 ms
182,632 KB
testcase_26 AC 707 ms
118,552 KB
testcase_27 AC 767 ms
130,184 KB
testcase_28 AC 732 ms
120,772 KB
testcase_29 AC 798 ms
121,524 KB
testcase_30 AC 800 ms
167,368 KB
testcase_31 AC 925 ms
184,456 KB
testcase_32 AC 868 ms
190,300 KB
testcase_33 AC 915 ms
195,428 KB
testcase_34 AC 863 ms
188,512 KB
testcase_35 AC 920 ms
197,656 KB
testcase_36 AC 860 ms
193,580 KB
testcase_37 AC 879 ms
188,384 KB
testcase_38 AC 873 ms
195,192 KB
testcase_39 AC 859 ms
170,896 KB
権限があれば一括ダウンロードができます

ソースコード

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.appendleft([x,y,h])
                    high[x][y]=h
    return high[-1][-1]

print(nibun(isok))
0