結果

問題 No.2855 Move on Grid
ユーザー Basin-BugBasin-Bug
提出日時 2024-08-25 14:57:46
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 979 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 82,000 KB
実行使用メモリ 130,896 KB
最終ジャッジ日時 2024-08-25 14:58:46
合計ジャッジ時間 46,455 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,158 ms
93,992 KB
testcase_01 AC 1,816 ms
99,236 KB
testcase_02 AC 591 ms
85,120 KB
testcase_03 AC 738 ms
82,584 KB
testcase_04 AC 557 ms
80,404 KB
testcase_05 AC 1,055 ms
87,392 KB
testcase_06 AC 997 ms
84,716 KB
testcase_07 AC 223 ms
78,008 KB
testcase_08 AC 1,046 ms
86,212 KB
testcase_09 AC 464 ms
79,232 KB
testcase_10 AC 2,981 ms
105,672 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def slove(grid, N, M, K, X):
  directions = [(-1, 0), (1, 0), (0, -1), (0, 1)]
  changeCount = [[10 ** 18] * M for i in range(N)]
  changeCount[0][0] = 0 if grid[0][0] >= X else 1
  pq = [(changeCount[0][0], 0, 0)]
  
  while pq:
    currentChange, i, j = heapq.heappop(pq)
    if i == N - 1 and j == M - 1:
      return currentChange <= K
    
    if currentChange > K:
      continue
    
    for di, dj in directions:
      ni, nj = i + di, j + dj
      if 0 <= ni < N and 0 <= nj < M:
        nextChange = currentChange + (1 if grid[ni][nj] < X else 0)
        if nextChange < changeCount[ni][nj]:
          changeCount[ni][nj] = nextChange
          heapq.heappush(pq, (nextChange, ni, nj))

  return False


low, high = 1, 10 ** 9 + 1

while low < high:
  mid = (low + high) // 2
  if slove(A, N, M, K, mid):
    low = mid + 1
  else:
    high = mid

print(low - 1)

0