結果

問題 No.2855 Move on Grid
ユーザー Basin-BugBasin-Bug
提出日時 2024-08-25 14:54:58
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 964 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 125,804 KB
最終ジャッジ日時 2024-08-25 14:55:49
合計ジャッジ時間 49,741 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,289 ms
93,896 KB
testcase_01 AC 2,034 ms
99,668 KB
testcase_02 AC 1,271 ms
97,132 KB
testcase_03 AC 865 ms
82,336 KB
testcase_04 AC 589 ms
80,860 KB
testcase_05 AC 1,223 ms
87,032 KB
testcase_06 AC 1,049 ms
84,608 KB
testcase_07 AC 244 ms
78,240 KB
testcase_08 AC 1,116 ms
86,080 KB
testcase_09 AC 481 ms
79,948 KB
testcase_10 TLE -
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):
  changeCount = [[10 ** 18] * M for _ in range(N)]
  changeCount[0][0] = 0 if grid[0][0] >= X else 1
  pq = [(changeCount[0][0], 0, 0)]
  
  directions = [(-1, 0), (1, 0), (0, -1), (0, 1)]

  while pq:
    currentChange, i, j = heapq.heappop(pq)
    if i == N - 1 and j == M - 1:
      return currentChange <= K
    
    for di, dj in directions:
      ni, nj = i + di, j + dj
      if 0 <= ni < N and 0 <= nj < M:
        nextChange = currentChange
        if grid[ni][nj] < X:
          nextChange += 1
        
        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