結果

問題 No.2855 Move on Grid
ユーザー prd_xxxprd_xxx
提出日時 2024-08-25 14:06:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 838 ms / 3,000 ms
コード長 895 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 125,388 KB
最終ジャッジ日時 2024-08-25 14:06:56
合計ジャッジ時間 24,526 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 256 ms
79,712 KB
testcase_01 AC 316 ms
81,460 KB
testcase_02 AC 187 ms
79,224 KB
testcase_03 AC 213 ms
78,140 KB
testcase_04 AC 180 ms
77,824 KB
testcase_05 AC 272 ms
79,472 KB
testcase_06 AC 234 ms
79,648 KB
testcase_07 AC 120 ms
77,556 KB
testcase_08 AC 235 ms
78,824 KB
testcase_09 AC 161 ms
77,744 KB
testcase_10 AC 594 ms
102,472 KB
testcase_11 AC 472 ms
102,224 KB
testcase_12 AC 601 ms
101,064 KB
testcase_13 AC 601 ms
102,356 KB
testcase_14 AC 663 ms
115,032 KB
testcase_15 AC 472 ms
102,316 KB
testcase_16 AC 457 ms
102,408 KB
testcase_17 AC 466 ms
100,796 KB
testcase_18 AC 465 ms
100,908 KB
testcase_19 AC 455 ms
101,960 KB
testcase_20 AC 722 ms
108,840 KB
testcase_21 AC 818 ms
109,368 KB
testcase_22 AC 680 ms
108,552 KB
testcase_23 AC 800 ms
109,568 KB
testcase_24 AC 691 ms
108,116 KB
testcase_25 AC 705 ms
112,744 KB
testcase_26 AC 718 ms
108,588 KB
testcase_27 AC 805 ms
109,284 KB
testcase_28 AC 773 ms
107,660 KB
testcase_29 AC 745 ms
108,020 KB
testcase_30 AC 812 ms
112,600 KB
testcase_31 AC 688 ms
112,832 KB
testcase_32 AC 819 ms
120,796 KB
testcase_33 AC 763 ms
123,916 KB
testcase_34 AC 737 ms
111,512 KB
testcase_35 AC 820 ms
124,552 KB
testcase_36 AC 493 ms
116,680 KB
testcase_37 AC 838 ms
115,968 KB
testcase_38 AC 816 ms
125,388 KB
testcase_39 AC 809 ms
111,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dij = [(0,1),(1,0),(0,-1),(-1,0)]
from collections import deque
INF = 10**18

def is_ok(k):
    costs = [[INF]*M for i in range(N)]
    costs[0][0] = int(A[0][0] < k)
    q = deque([(0,0)])
    while q:
        i,j = q.popleft()
        if i == N-1 and j == M-1:
            return costs[-1][-1] <= K
        for di,dj in dij:
            ni,nj = i+di,j+dj
            if not (0 <= ni < N and 0 <= nj < M): continue
            cost = int(A[ni][nj] < k)
            if costs[ni][nj] <= costs[i][j] + cost: continue
            costs[ni][nj] = costs[i][j] + cost
            if cost:
                q.append((ni,nj))
            else:
                q.appendleft((ni,nj))

ok = 0
ng = 10**9+1
while ng - ok > 1:
    mid = (ok+ng)//2
    if is_ok(mid):
        ok = mid
    else:
        ng = mid
print(ok)
0