結果

問題 No.2855 Move on Grid
ユーザー ntudantuda
提出日時 2024-08-31 11:31:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 599 ms / 3,000 ms
コード長 1,080 bytes
コンパイル時間 653 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 103,672 KB
最終ジャッジ日時 2024-08-31 11:31:23
合計ジャッジ時間 20,245 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 203 ms
77,732 KB
testcase_01 AC 210 ms
79,244 KB
testcase_02 AC 112 ms
77,236 KB
testcase_03 AC 141 ms
77,136 KB
testcase_04 AC 134 ms
76,712 KB
testcase_05 AC 190 ms
77,692 KB
testcase_06 AC 187 ms
77,872 KB
testcase_07 AC 101 ms
76,380 KB
testcase_08 AC 154 ms
77,252 KB
testcase_09 AC 142 ms
77,308 KB
testcase_10 AC 530 ms
95,788 KB
testcase_11 AC 443 ms
95,652 KB
testcase_12 AC 437 ms
95,660 KB
testcase_13 AC 551 ms
95,548 KB
testcase_14 AC 445 ms
95,804 KB
testcase_15 AC 443 ms
95,448 KB
testcase_16 AC 537 ms
95,484 KB
testcase_17 AC 454 ms
95,500 KB
testcase_18 AC 537 ms
95,612 KB
testcase_19 AC 541 ms
95,400 KB
testcase_20 AC 485 ms
93,960 KB
testcase_21 AC 504 ms
95,896 KB
testcase_22 AC 579 ms
93,964 KB
testcase_23 AC 484 ms
94,664 KB
testcase_24 AC 463 ms
93,448 KB
testcase_25 AC 473 ms
98,940 KB
testcase_26 AC 592 ms
94,868 KB
testcase_27 AC 587 ms
96,396 KB
testcase_28 AC 476 ms
94,648 KB
testcase_29 AC 473 ms
94,548 KB
testcase_30 AC 510 ms
99,272 KB
testcase_31 AC 460 ms
99,536 KB
testcase_32 AC 513 ms
103,208 KB
testcase_33 AC 420 ms
102,216 KB
testcase_34 AC 551 ms
99,816 KB
testcase_35 AC 599 ms
103,672 KB
testcase_36 AC 259 ms
95,596 KB
testcase_37 AC 480 ms
99,332 KB
testcase_38 AC 511 ms
102,052 KB
testcase_39 AC 488 ms
99,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def search(v):
    nv = [[True] * M for _ in range(N)]
    cnt = 0
    Q = [(0, 0)]
    if A[0][0] < v:
        cnt += 1
        if cnt > K:
            return False
    nv[0][0] = False

    while Q:
        Q2 = []
        while Q:
            x0, y0 = Q.pop()
            if x0 == N - 1 and y0 == M - 1:
                return True
            for xd, yd in dir:
                x = x0 + xd
                y = y0 + yd
                if 0 <= x < N and 0 <= y < M:
                    if nv[x][y]:
                        nv[x][y] = False
                        if A[x][y] >= v:
                            Q.append((x, y))
                        else:
                            Q2.append((x, y))
        Q, Q2 = Q2, Q
        cnt += 1
        if cnt > K:
            return False
    return cnt

lb = 1
ub = 10 ** 9 + 1
while ub - lb > 1:
    mid = (ub + lb) // 2
    if search(mid):
        lb = mid
    else:
        ub = mid
print(lb)
0