結果

問題 No.2855 Move on Grid
ユーザー PNJPNJ
提出日時 2024-09-03 19:42:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 691 ms / 3,000 ms
コード長 839 bytes
コンパイル時間 435 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 91,044 KB
最終ジャッジ日時 2024-09-03 19:42:48
合計ジャッジ時間 16,028 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 214 ms
77,928 KB
testcase_01 AC 216 ms
78,472 KB
testcase_02 AC 208 ms
78,444 KB
testcase_03 AC 154 ms
78,152 KB
testcase_04 AC 160 ms
77,892 KB
testcase_05 AC 179 ms
78,160 KB
testcase_06 AC 212 ms
78,232 KB
testcase_07 AC 106 ms
77,052 KB
testcase_08 AC 167 ms
78,328 KB
testcase_09 AC 138 ms
78,072 KB
testcase_10 AC 62 ms
76,044 KB
testcase_11 AC 63 ms
76,168 KB
testcase_12 AC 63 ms
76,308 KB
testcase_13 AC 63 ms
76,200 KB
testcase_14 AC 62 ms
76,124 KB
testcase_15 AC 63 ms
76,116 KB
testcase_16 AC 62 ms
76,076 KB
testcase_17 AC 63 ms
76,280 KB
testcase_18 AC 64 ms
76,088 KB
testcase_19 AC 65 ms
76,168 KB
testcase_20 AC 457 ms
87,272 KB
testcase_21 AC 463 ms
87,940 KB
testcase_22 AC 462 ms
87,496 KB
testcase_23 AC 464 ms
87,960 KB
testcase_24 AC 461 ms
86,176 KB
testcase_25 AC 615 ms
89,072 KB
testcase_26 AC 565 ms
87,588 KB
testcase_27 AC 455 ms
87,804 KB
testcase_28 AC 451 ms
87,408 KB
testcase_29 AC 452 ms
87,560 KB
testcase_30 AC 605 ms
89,484 KB
testcase_31 AC 514 ms
89,420 KB
testcase_32 AC 484 ms
89,340 KB
testcase_33 AC 587 ms
91,008 KB
testcase_34 AC 623 ms
90,444 KB
testcase_35 AC 654 ms
90,516 KB
testcase_36 AC 691 ms
90,436 KB
testcase_37 AC 527 ms
89,352 KB
testcase_38 AC 578 ms
91,044 KB
testcase_39 AC 644 ms
89,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

N,M,K = map(int,input().split())
A = [list(map(int,input().split())) for i in range(N)]

if N + M - 1 <= K:
  ans = 10 ** 9
  print(ans)
  exit()

D = [(0,1),(0,-1),(-1,0),(1,0)]
l = 1
r = 10 ** 9 + 1
while r - l > 1:
  m = (l + r) // 2
  C = [[-1 for _ in range(M)] for _ in range(N)]
  if A[0][0] < m:
    C[0][0] = 1
  else:
    C[0][0] = 0
  dq = deque([(0,0)])
  while len(dq):
    u,v = dq.popleft()
    c = C[u][v]
    for dx,dy in D:
      if 0 <= u + dx < N and 0 <= v + dy < M:
        uu,vv = u + dx,v + dy
        if C[uu][vv] != -1:
          continue
        cc = c
        if A[uu][vv] < m:
          cc += 1
          C[uu][vv] = cc
          dq.append((uu,vv))
          continue
        C[uu][vv] = cc
        dq.appendleft((uu,vv))
  if C[-1][-1] <= K:
    l = m
  else:
    r = m
print(l)
0