結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 89 ms
86,804 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 462 ms
321,036 KB
testcase_11 AC 454 ms
316,368 KB
testcase_12 AC 449 ms
326,620 KB
testcase_13 AC 448 ms
320,440 KB
testcase_14 AC 473 ms
316,348 KB
testcase_15 AC 447 ms
315,756 KB
testcase_16 AC 464 ms
316,292 KB
testcase_17 AC 449 ms
323,932 KB
testcase_18 AC 431 ms
316,152 KB
testcase_19 AC 473 ms
315,812 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 481 ms
325,544 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