結果

問題 No.2855 Move on Grid
ユーザー sepa38sepa38
提出日時 2024-08-07 22:29:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 877 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 152,144 KB
最終ジャッジ日時 2024-08-25 13:03:21
合計ジャッジ時間 11,682 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 94 ms
78,908 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 112 ms
78,680 KB
testcase_08 WA -
testcase_09 AC 262 ms
94,392 KB
testcase_10 AC 57 ms
75,468 KB
testcase_11 AC 55 ms
75,896 KB
testcase_12 AC 56 ms
75,476 KB
testcase_13 AC 56 ms
75,808 KB
testcase_14 AC 56 ms
75,720 KB
testcase_15 AC 57 ms
75,700 KB
testcase_16 AC 58 ms
75,772 KB
testcase_17 AC 57 ms
75,472 KB
testcase_18 AC 57 ms
75,872 KB
testcase_19 AC 57 ms
75,712 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 77 ms
76,824 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, k = map(int, input().split())
a = [list(map(int, input().split())) for _ in range(n)]
inf = 10 ** 9
if k >= n + m - 1:
  print(inf)
  exit()
dp = [[[0] * (k + 1) for _ in range(m)] for _ in range(n)]
dp[0][0][0] = a[0][0]
for i in range(n):
  for j in range(m):
    for l in range(k):
      if l + 1 > i + j:
        dp[i][j][l+1] = inf
      if i:
        dp[i][j][l+1] = max(dp[i][j][l+1], dp[i-1][j][l])
        dp[i][j][l] = max(dp[i][j][l], min(dp[i-1][j][l], a[i][j]))
      if j:
        dp[i][j][l+1] = max(dp[i][j][l+1], dp[i][j-1][l])
        dp[i][j][l] = max(dp[i][j][l], min(dp[i][j-1][l], a[i][j]))
    if i:
      dp[i][j][k] = max(dp[i][j][k], min(dp[i-1][j][k], a[i][j]))
    if j:
      dp[i][j][k] = max(dp[i][j][k], min(dp[i][j-1][k], a[i][j]))
print(max(dp[-1][-1]))

# print(*dp, sep = "\n")

# for dpi in dp:
#   print(*dpi, sep = "\n")
#   print()
0