結果

問題 No.2855 Move on Grid
ユーザー ryota2357ryota2357
提出日時 2023-10-26 10:20:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,198 ms / 3,000 ms
コード長 869 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 268,068 KB
最終ジャッジ日時 2024-08-25 13:01:59
合計ジャッジ時間 31,098 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 276 ms
81,512 KB
testcase_01 AC 362 ms
90,828 KB
testcase_02 AC 304 ms
90,700 KB
testcase_03 AC 234 ms
79,768 KB
testcase_04 AC 204 ms
78,452 KB
testcase_05 AC 281 ms
81,832 KB
testcase_06 AC 295 ms
81,252 KB
testcase_07 AC 151 ms
78,252 KB
testcase_08 AC 266 ms
80,976 KB
testcase_09 AC 193 ms
78,692 KB
testcase_10 AC 727 ms
128,352 KB
testcase_11 AC 648 ms
128,440 KB
testcase_12 AC 707 ms
127,860 KB
testcase_13 AC 709 ms
128,516 KB
testcase_14 AC 676 ms
128,732 KB
testcase_15 AC 734 ms
130,324 KB
testcase_16 AC 704 ms
129,592 KB
testcase_17 AC 700 ms
128,792 KB
testcase_18 AC 655 ms
128,636 KB
testcase_19 AC 648 ms
128,220 KB
testcase_20 AC 863 ms
130,772 KB
testcase_21 AC 862 ms
160,692 KB
testcase_22 AC 876 ms
131,660 KB
testcase_23 AC 844 ms
128,796 KB
testcase_24 AC 793 ms
132,492 KB
testcase_25 AC 1,041 ms
203,148 KB
testcase_26 AC 868 ms
129,248 KB
testcase_27 AC 943 ms
150,908 KB
testcase_28 AC 885 ms
132,320 KB
testcase_29 AC 864 ms
133,152 KB
testcase_30 AC 1,061 ms
196,168 KB
testcase_31 AC 997 ms
216,372 KB
testcase_32 AC 1,030 ms
237,100 KB
testcase_33 AC 1,067 ms
250,100 KB
testcase_34 AC 1,067 ms
212,728 KB
testcase_35 AC 1,198 ms
266,244 KB
testcase_36 AC 1,192 ms
268,068 KB
testcase_37 AC 966 ms
214,160 KB
testcase_38 AC 1,132 ms
252,980 KB
testcase_39 AC 1,070 ms
197,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n, m, k = map(int, input().split())
a = [list(map(int, input().split())) for _ in range(n)]

l, r = 0, 1000000001

while r - l > 1:
    mid = (l + r) // 2

    que = deque()
    cost = [[-1 for _ in range(m)] for _ in range(n)]

    dx = [1, 0, -1, 0]
    dy = [0, 1, 0, -1]

    que.append((0, 0, 1 if a[0][0] < mid else 0))

    while que:
        x, y, c = que.popleft()

        if cost[y][x] != -1:
            continue

        cost[y][x] = c

        for i in range(4):
            nx = x + dx[i]
            ny = y + dy[i]

            if 0 <= nx < m and 0 <= ny < n and cost[ny][nx] == -1:
                if a[ny][nx] < mid:
                    que.append((nx, ny, c + 1))
                else:
                    que.appendleft((nx, ny, c))

    if cost[n - 1][m - 1] <= k:
        l = mid
    else:
        r = mid

print(l)
0