結果

問題 No.2855 Move on Grid
ユーザー rlangevinrlangevin
提出日時 2024-09-23 12:46:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 882 ms / 3,000 ms
コード長 1,105 bytes
コンパイル時間 5,322 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 122,072 KB
最終ジャッジ日時 2024-09-23 12:49:09
合計ジャッジ時間 36,124 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 245 ms
78,704 KB
testcase_01 AC 289 ms
80,884 KB
testcase_02 AC 209 ms
79,520 KB
testcase_03 AC 165 ms
77,480 KB
testcase_04 AC 146 ms
77,148 KB
testcase_05 AC 234 ms
78,624 KB
testcase_06 AC 266 ms
78,860 KB
testcase_07 AC 88 ms
76,796 KB
testcase_08 AC 189 ms
77,704 KB
testcase_09 AC 120 ms
76,880 KB
testcase_10 AC 697 ms
112,396 KB
testcase_11 AC 625 ms
112,320 KB
testcase_12 AC 705 ms
112,928 KB
testcase_13 AC 681 ms
112,552 KB
testcase_14 AC 729 ms
112,732 KB
testcase_15 AC 725 ms
112,496 KB
testcase_16 AC 740 ms
112,364 KB
testcase_17 AC 570 ms
112,308 KB
testcase_18 AC 598 ms
112,244 KB
testcase_19 AC 718 ms
112,312 KB
testcase_20 AC 774 ms
108,100 KB
testcase_21 AC 800 ms
108,792 KB
testcase_22 AC 831 ms
108,316 KB
testcase_23 AC 780 ms
108,052 KB
testcase_24 AC 760 ms
107,020 KB
testcase_25 AC 827 ms
114,068 KB
testcase_26 AC 751 ms
108,432 KB
testcase_27 AC 807 ms
108,384 KB
testcase_28 AC 771 ms
108,192 KB
testcase_29 AC 764 ms
107,912 KB
testcase_30 AC 801 ms
112,420 KB
testcase_31 AC 802 ms
114,572 KB
testcase_32 AC 793 ms
116,940 KB
testcase_33 AC 796 ms
119,068 KB
testcase_34 AC 788 ms
115,956 KB
testcase_35 AC 882 ms
122,036 KB
testcase_36 AC 810 ms
122,072 KB
testcase_37 AC 779 ms
114,404 KB
testcase_38 AC 752 ms
119,404 KB
testcase_39 AC 813 ms
111,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

    
from collections import *
def check(mid):
    inf = 10 ** 18
    D = [[inf] * M for _ in range(N)]
    Q = deque()
    D[0][0] = int(A[0][0] < mid)
    dx = [1, 0, -1, 0]
    dy = [0, 1, 0, -1]
    Q.append((0, 0))
    while Q:
        px, py = Q.popleft()
        for k in range(4):
            x, y = px + dx[k], py + dy[k]
            if x < 0 or x > N - 1 or y < 0 or y > M - 1:
                continue
            if D[x][y] != inf and D[x][y] <= D[px][py] + int(A[x][y] < mid):
                continue
            D[x][y] = D[px][py] + int(A[x][y] < mid)
            if A[x][y] < mid:
                Q.append((x, y))
            else:
                Q.appendleft((x, y))
    return D[N-1][M-1] 
    
    
def BinarySearch(yes = 10 ** 18, no = -1):
    while abs(yes - no) != 1:
        mid = (yes + no)//2
        if check(mid) <= K:
            yes = mid
        else:
            no = mid
    return yes

print(BinarySearch(1, 10**9+1))    
0