結果

問題 No.2855 Move on Grid
ユーザー detteiuudetteiuu
提出日時 2024-08-25 14:17:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 824 ms / 3,000 ms
コード長 984 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 104,080 KB
最終ジャッジ日時 2024-08-25 14:18:00
合計ジャッジ時間 24,043 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 259 ms
78,900 KB
testcase_01 AC 308 ms
80,232 KB
testcase_02 AC 251 ms
78,860 KB
testcase_03 AC 199 ms
77,644 KB
testcase_04 AC 175 ms
77,940 KB
testcase_05 AC 249 ms
79,008 KB
testcase_06 AC 247 ms
79,068 KB
testcase_07 AC 126 ms
77,740 KB
testcase_08 AC 227 ms
78,116 KB
testcase_09 AC 163 ms
77,900 KB
testcase_10 AC 576 ms
99,212 KB
testcase_11 AC 667 ms
99,440 KB
testcase_12 AC 626 ms
98,988 KB
testcase_13 AC 666 ms
99,744 KB
testcase_14 AC 570 ms
99,764 KB
testcase_15 AC 543 ms
99,656 KB
testcase_16 AC 443 ms
99,292 KB
testcase_17 AC 478 ms
99,596 KB
testcase_18 AC 550 ms
98,988 KB
testcase_19 AC 705 ms
99,916 KB
testcase_20 AC 758 ms
96,748 KB
testcase_21 AC 738 ms
97,176 KB
testcase_22 AC 634 ms
96,872 KB
testcase_23 AC 604 ms
96,980 KB
testcase_24 AC 599 ms
96,556 KB
testcase_25 AC 779 ms
100,016 KB
testcase_26 AC 612 ms
96,880 KB
testcase_27 AC 679 ms
97,184 KB
testcase_28 AC 760 ms
97,144 KB
testcase_29 AC 645 ms
96,616 KB
testcase_30 AC 787 ms
99,012 KB
testcase_31 AC 768 ms
100,236 KB
testcase_32 AC 666 ms
101,520 KB
testcase_33 AC 799 ms
102,824 KB
testcase_34 AC 657 ms
100,140 KB
testcase_35 AC 756 ms
103,800 KB
testcase_36 AC 776 ms
104,080 KB
testcase_37 AC 690 ms
100,380 KB
testcase_38 AC 754 ms
102,936 KB
testcase_39 AC 824 ms
99,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

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

INF = 10**18
def func(n):
    que = deque()
    que.append((0, 0))
    visited = [[INF]*M for _ in range(N)]
    visited[0][0] = 1 if A[0][0] < n else 0
    while que:
        h, w = que.popleft()
        for dh, dw in direction:
            nh, nw = h+dh, w+dw
            if 0<=nh<N and 0<=nw<M:
                if A[nh][nw] < n and visited[h][w]+1 < visited[nh][nw]:
                    visited[nh][nw] = visited[h][w]+1
                    que.append((nh, nw))
                elif A[nh][nw] >= n and visited[h][w] < visited[nh][nw]:
                    visited[nh][nw] = visited[h][w]
                    que.appendleft((nh, nw))
    return visited[-1][-1]

left = 1
right = 10**9+1
direction = [(-1,0),(0,1),(1,0),(0,-1)]
while left+1 < right:
    mid = (left+right)//2
    if func(mid) <= K:
        left = mid
    else:
        right = mid

print(left)
0