結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 118 ms
107,652 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 445 ms
321,100 KB
testcase_11 AC 470 ms
316,260 KB
testcase_12 AC 468 ms
326,656 KB
testcase_13 AC 476 ms
320,368 KB
testcase_14 AC 434 ms
316,616 KB
testcase_15 AC 437 ms
315,928 KB
testcase_16 AC 464 ms
316,124 KB
testcase_17 AC 451 ms
324,008 KB
testcase_18 AC 452 ms
316,496 KB
testcase_19 AC 468 ms
316,124 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 458 ms
325,520 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

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()] * M 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()
for i in range(1, M):
  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, M):
    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