結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 86 ms
87,152 KB
testcase_03 WA -
testcase_04 RE -
testcase_05 WA -
testcase_06 RE -
testcase_07 RE -
testcase_08 WA -
testcase_09 RE -
testcase_10 AC 460 ms
320,976 KB
testcase_11 AC 459 ms
316,296 KB
testcase_12 AC 444 ms
326,304 KB
testcase_13 AC 448 ms
320,272 KB
testcase_14 AC 462 ms
316,336 KB
testcase_15 AC 439 ms
316,032 KB
testcase_16 AC 475 ms
316,016 KB
testcase_17 AC 454 ms
323,876 KB
testcase_18 AC 443 ms
316,124 KB
testcase_19 AC 470 ms
315,912 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 460 ms
325,420 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
import bisect

def judge(A, B):
  for i in range(len(A)):
    if A[i] > B[i]:
      return A
    elif B[i] > A[i]:
      return B
  return A

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

dp = [[list()] * N for i in range(N)]
dp[0][0].append(A[0][0])

for i in range(1, N):
  dp[i][0] = dp[i - 1][0][:]
  dp[i][0].append(A[i][0])
  dp[i][0].sort()

  dp[0][i] = dp[0][i - 1][:]
  dp[0][i].append(A[0][i])
  dp[0][i].sort()


for i in range(1, N):
  for j in range(1, N):
    arr = judge(dp[i][j - 1], dp[i - 1][j])
    dp[i][j] = arr[:]
    dp[i][j].append(A[i][j])
    dp[i][j].sort()

if len(dp[-1][-1]) <= K:
  print(10 ** 9)
else:
  print(dp[-1][-1][K])
0