結果

問題 No.2855 Move on Grid
ユーザー ryota2357ryota2357
提出日時 2023-10-26 10:25:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,060 ms / 3,000 ms
コード長 921 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 270,748 KB
最終ジャッジ日時 2024-08-25 13:03:22
合計ジャッジ時間 26,588 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 237 ms
81,916 KB
testcase_01 AC 319 ms
91,244 KB
testcase_02 AC 265 ms
89,972 KB
testcase_03 AC 203 ms
79,044 KB
testcase_04 AC 180 ms
78,204 KB
testcase_05 AC 248 ms
81,868 KB
testcase_06 AC 252 ms
80,748 KB
testcase_07 AC 133 ms
77,964 KB
testcase_08 AC 233 ms
80,248 KB
testcase_09 AC 180 ms
78,368 KB
testcase_10 AC 607 ms
125,320 KB
testcase_11 AC 511 ms
125,736 KB
testcase_12 AC 573 ms
126,428 KB
testcase_13 AC 605 ms
125,476 KB
testcase_14 AC 552 ms
125,944 KB
testcase_15 AC 603 ms
125,692 KB
testcase_16 AC 589 ms
126,368 KB
testcase_17 AC 589 ms
125,332 KB
testcase_18 AC 559 ms
125,796 KB
testcase_19 AC 550 ms
126,004 KB
testcase_20 AC 766 ms
128,936 KB
testcase_21 AC 754 ms
159,992 KB
testcase_22 AC 755 ms
129,472 KB
testcase_23 AC 693 ms
125,724 KB
testcase_24 AC 673 ms
130,208 KB
testcase_25 AC 896 ms
206,376 KB
testcase_26 AC 758 ms
128,156 KB
testcase_27 AC 816 ms
150,228 KB
testcase_28 AC 775 ms
129,968 KB
testcase_29 AC 740 ms
131,504 KB
testcase_30 AC 891 ms
196,604 KB
testcase_31 AC 831 ms
215,016 KB
testcase_32 AC 898 ms
238,260 KB
testcase_33 AC 912 ms
251,112 KB
testcase_34 AC 912 ms
216,972 KB
testcase_35 AC 1,060 ms
268,288 KB
testcase_36 AC 1,035 ms
270,748 KB
testcase_37 AC 802 ms
214,236 KB
testcase_38 AC 970 ms
251,720 KB
testcase_39 AC 917 ms
200,944 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)]
    cost = [-1 for _ in range(m * 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[m * y + x] != -1:
            continue

        cost[m * 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[m * ny + nx] == -1:
                if a[ny][nx] < mid:
                    que.append((nx, ny, c + 1))
                else:
                    que.appendleft((nx, ny, c))

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

print(l)
0