結果

問題 No.2855 Move on Grid
ユーザー rlangevinrlangevin
提出日時 2024-09-23 12:39:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,105 bytes
コンパイル時間 5,692 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 121,992 KB
最終ジャッジ日時 2024-09-23 12:44:07
合計ジャッジ時間 37,315 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 149 ms
77,408 KB
testcase_03 WA -
testcase_04 RE -
testcase_05 WA -
testcase_06 RE -
testcase_07 RE -
testcase_08 WA -
testcase_09 RE -
testcase_10 AC 737 ms
112,512 KB
testcase_11 AC 633 ms
112,352 KB
testcase_12 AC 739 ms
112,996 KB
testcase_13 AC 734 ms
112,560 KB
testcase_14 AC 738 ms
112,804 KB
testcase_15 AC 781 ms
112,404 KB
testcase_16 AC 776 ms
112,296 KB
testcase_17 AC 600 ms
112,444 KB
testcase_18 AC 645 ms
112,280 KB
testcase_19 AC 768 ms
112,440 KB
testcase_20 AC 798 ms
108,096 KB
testcase_21 AC 849 ms
108,700 KB
testcase_22 AC 840 ms
108,132 KB
testcase_23 AC 822 ms
108,052 KB
testcase_24 AC 790 ms
106,888 KB
testcase_25 AC 860 ms
114,052 KB
testcase_26 AC 803 ms
108,428 KB
testcase_27 AC 822 ms
108,560 KB
testcase_28 AC 800 ms
108,144 KB
testcase_29 AC 803 ms
108,088 KB
testcase_30 AC 840 ms
112,028 KB
testcase_31 AC 873 ms
114,688 KB
testcase_32 AC 851 ms
116,856 KB
testcase_33 AC 853 ms
118,788 KB
testcase_34 AC 859 ms
115,964 KB
testcase_35 AC 896 ms
121,992 KB
testcase_36 AC 830 ms
121,988 KB
testcase_37 AC 863 ms
114,440 KB
testcase_38 AC 823 ms
119,320 KB
testcase_39 AC 873 ms
111,616 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] * N 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 > N - 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][N-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