結果

問題 No.2855 Move on Grid
ユーザー ryota2357ryota2357
提出日時 2023-10-26 10:22:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 869 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 19,104 KB
最終ジャッジ日時 2024-08-25 13:02:25
合計ジャッジ時間 22,385 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,076 ms
19,104 KB
testcase_01 AC 2,654 ms
14,848 KB
testcase_02 AC 1,982 ms
13,312 KB
testcase_03 AC 1,274 ms
11,648 KB
testcase_04 AC 815 ms
11,776 KB
testcase_05 AC 1,896 ms
12,160 KB
testcase_06 AC 1,988 ms
12,288 KB
testcase_07 AC 227 ms
11,008 KB
testcase_08 AC 1,421 ms
12,544 KB
testcase_09 AC 897 ms
11,648 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
権限があれば一括ダウンロードができます

ソースコード

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