結果

問題 No.2855 Move on Grid
ユーザー Basin-BugBasin-Bug
提出日時 2024-08-25 15:07:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 886 bytes
コンパイル時間 419 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 83,476 KB
最終ジャッジ日時 2024-08-25 15:07:56
合計ジャッジ時間 10,876 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 142 ms
78,672 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 95 ms
76,968 KB
testcase_08 WA -
testcase_09 AC 117 ms
77,956 KB
testcase_10 AC 240 ms
82,280 KB
testcase_11 AC 209 ms
82,180 KB
testcase_12 AC 208 ms
82,004 KB
testcase_13 AC 219 ms
82,312 KB
testcase_14 AC 180 ms
82,256 KB
testcase_15 AC 208 ms
82,556 KB
testcase_16 AC 234 ms
82,388 KB
testcase_17 AC 206 ms
81,872 KB
testcase_18 AC 206 ms
82,200 KB
testcase_19 AC 209 ms
82,172 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 236 ms
82,060 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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


dp = [[-10 ** 18] * M for i in range(N)]
dp[0][0] = A[0][0]

for i in range(N):
  for j in range(M):
    if i > 0:
      dp[i][j] = max(dp[i][j], min(dp[i - 1][j], A[i][j]))
    if j > 0:
      dp[i][j] = max(dp[i][j], min(dp[i][j - 1], A[i][j]))

max_possible = dp[-1][-1]

left, right = max_possible, 10 ** 9

while left < right:
  mid = (left + right + 1) // 2
  change_needed = 0
  dp = [[float('inf')] * M for _ in range(N)]
  dp[0][0] = 0 if A[0][0] >= mid else 1
  
  for i in range(N):
    for j in range(M):
      if i > 0:
        dp[i][j] = min(dp[i][j], dp[i-1][j] + (1 if A[i][j] < mid else 0))
      if j > 0:
        dp[i][j] = min(dp[i][j], dp[i][j-1] + (1 if A[i][j] < mid else 0))

  if dp[-1][-1] <= K:
    left = mid
  else:
    right = mid - 1

print(left)

0