結果

問題 No.2855 Move on Grid
ユーザー sepa38sepa38
提出日時 2024-08-09 18:35:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,598 ms / 3,000 ms
コード長 1,339 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 81,960 KB
実行使用メモリ 159,568 KB
最終ジャッジ日時 2024-08-25 13:04:18
合計ジャッジ時間 64,732 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,096 ms
97,472 KB
testcase_01 AC 1,294 ms
103,924 KB
testcase_02 AC 338 ms
85,168 KB
testcase_03 AC 922 ms
91,972 KB
testcase_04 AC 766 ms
87,908 KB
testcase_05 AC 1,070 ms
96,908 KB
testcase_06 AC 851 ms
95,456 KB
testcase_07 AC 273 ms
79,756 KB
testcase_08 AC 1,032 ms
94,112 KB
testcase_09 AC 391 ms
82,716 KB
testcase_10 AC 925 ms
111,892 KB
testcase_11 AC 969 ms
109,448 KB
testcase_12 AC 949 ms
109,452 KB
testcase_13 AC 936 ms
110,864 KB
testcase_14 AC 961 ms
109,300 KB
testcase_15 AC 925 ms
109,228 KB
testcase_16 AC 919 ms
108,768 KB
testcase_17 AC 931 ms
110,496 KB
testcase_18 AC 917 ms
111,176 KB
testcase_19 AC 970 ms
108,680 KB
testcase_20 AC 2,199 ms
143,400 KB
testcase_21 AC 2,273 ms
146,952 KB
testcase_22 AC 2,506 ms
155,032 KB
testcase_23 AC 2,261 ms
146,712 KB
testcase_24 AC 2,532 ms
151,088 KB
testcase_25 AC 2,246 ms
147,732 KB
testcase_26 AC 2,249 ms
147,072 KB
testcase_27 AC 2,338 ms
146,252 KB
testcase_28 AC 2,598 ms
150,828 KB
testcase_29 AC 2,591 ms
149,780 KB
testcase_30 AC 2,428 ms
159,568 KB
testcase_31 AC 2,109 ms
137,140 KB
testcase_32 AC 2,331 ms
150,600 KB
testcase_33 AC 2,204 ms
147,652 KB
testcase_34 AC 2,224 ms
147,624 KB
testcase_35 AC 2,155 ms
153,412 KB
testcase_36 AC 554 ms
108,504 KB
testcase_37 AC 1,985 ms
141,560 KB
testcase_38 AC 2,300 ms
152,380 KB
testcase_39 AC 2,144 ms
147,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
n, m, k = map(int, input().split())
a = [list(map(int, input().split())) for _ in range(n)]
inf = 1 << 30
l, r = 0, inf
while r - l > 1:
  piv = (l + r) // 2
  dist = [inf] * (n * m)
  dist[0] = a[0][0] < piv
  d = deque([dist[0]*n*m])
  while d:
    c, u = divmod(d.popleft(), n*m)
    if u == n * m - 1:
    	break
    i, j = u // m, u % m
    if 0 < i:
      dis = c + (a[i-1][j] < piv)
      if dis < dist[u-m] and dis <= k:
        dist[u-m] = dis
        if a[i-1][j] < piv:
          d.append(dis*n*m+u-m)
        else:
          d.appendleft(dis*n*m+u-m)
    if i < n - 1:
      dis = c + (a[i+1][j] < piv)
      if dis < dist[u+m] and dis <= k:
        dist[u+m] = dis
        if a[i+1][j] < piv:
          d.append(dis*n*m+u+m)
        else:
          d.appendleft(dis*n*m+u+m)
    if 0 < j:
      dis = c + (a[i][j-1] < piv)
      if dis < dist[u-1] and dis <= k:
        dist[u-1] = dis
        if a[i][j-1] < piv:
          d.append(dis*n*m+u-1)
        else:
          d.appendleft(dis*n*m+u-1)
    if j < m - 1:
      dis = c + (a[i][j+1] < piv)
      if dis < dist[u+1] and dis <= k:
        dist[u+1] = dis
        if a[i][j+1] < piv:
          d.append(dis*n*m+u+1)
        else:
          d.appendleft(dis*n*m+u+1)
  if dist[n*m-1] <= k:
    l = piv
  else:
    r = piv
print(min(l, 10**9))
0