結果

問題 No.2855 Move on Grid
ユーザー mkawa2mkawa2
提出日時 2024-08-25 14:13:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 969 ms / 3,000 ms
コード長 1,662 bytes
コンパイル時間 425 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 136,292 KB
最終ジャッジ日時 2024-08-25 14:14:03
合計ジャッジ時間 25,325 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 250 ms
79,784 KB
testcase_01 AC 310 ms
82,048 KB
testcase_02 AC 244 ms
80,504 KB
testcase_03 AC 165 ms
77,788 KB
testcase_04 AC 143 ms
77,524 KB
testcase_05 AC 231 ms
79,224 KB
testcase_06 AC 207 ms
79,308 KB
testcase_07 AC 87 ms
76,740 KB
testcase_08 AC 224 ms
78,904 KB
testcase_09 AC 130 ms
77,192 KB
testcase_10 AC 549 ms
114,392 KB
testcase_11 AC 643 ms
115,548 KB
testcase_12 AC 622 ms
114,420 KB
testcase_13 AC 722 ms
113,988 KB
testcase_14 AC 555 ms
114,852 KB
testcase_15 AC 496 ms
113,452 KB
testcase_16 AC 495 ms
112,928 KB
testcase_17 AC 519 ms
113,176 KB
testcase_18 AC 714 ms
114,200 KB
testcase_19 AC 648 ms
114,748 KB
testcase_20 AC 760 ms
109,528 KB
testcase_21 AC 738 ms
110,648 KB
testcase_22 AC 707 ms
110,072 KB
testcase_23 AC 730 ms
109,528 KB
testcase_24 AC 749 ms
109,328 KB
testcase_25 AC 729 ms
116,660 KB
testcase_26 AC 854 ms
109,352 KB
testcase_27 AC 718 ms
110,500 KB
testcase_28 AC 740 ms
108,112 KB
testcase_29 AC 734 ms
109,408 KB
testcase_30 AC 739 ms
114,448 KB
testcase_31 AC 828 ms
118,992 KB
testcase_32 AC 787 ms
121,304 KB
testcase_33 AC 833 ms
124,920 KB
testcase_34 AC 775 ms
120,820 KB
testcase_35 AC 969 ms
136,292 KB
testcase_36 AC 831 ms
128,880 KB
testcase_37 AC 785 ms
118,236 KB
testcase_38 AC 785 ms
124,008 KB
testcase_39 AC 814 ms
119,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 62)

# md = 10**9+7
md = 998244353

from collections import deque

h,w,k=LI()
aa=LLI(h)

def binary_search(l, r, minimize):
    if minimize: l -= 1
    else: r += 1
    while l+1 < r:
        m = (l+r)//2
        if ok(m) ^ minimize: l = m
        else: r = m
    if minimize: return r
    return l

def ok(m):
    q=deque()
    dist=[[inf]*w for _ in range(h)]
    dist[0][0]=aa[0][0]<m
    q.append((0,0))
    while q:
        i,j=q.popleft()
        d=dist[i][j]
        for di, dj in dij:
            ni, nj = i+di, j+dj
            if ni < 0 or nj < 0 or ni >= h or nj >= w: continue
            if aa[ni][nj]>=m:
                if d<dist[ni][nj]:
                    dist[ni][nj]=d
                    q.appendleft((ni,nj))
            else:
                if d+1<dist[ni][nj]:
                    dist[ni][nj]=d+1
                    q.append((ni,nj))
    return dist[-1][-1]<=k

ans=binary_search(0,10**9,False)
print(ans)
0