結果
問題 | No.798 コレクション |
ユーザー | pasoconhoshii |
提出日時 | 2019-03-16 10:43:49 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 606 bytes |
コンパイル時間 | 87 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 116,636 KB |
最終ジャッジ日時 | 2024-07-01 22:22:51 |
合計ジャッジ時間 | 6,525 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
16,384 KB |
testcase_01 | AC | 32 ms
10,752 KB |
testcase_02 | AC | 30 ms
10,624 KB |
testcase_03 | AC | 30 ms
10,752 KB |
testcase_04 | AC | 30 ms
10,624 KB |
testcase_05 | AC | 30 ms
10,752 KB |
testcase_06 | AC | 30 ms
10,752 KB |
testcase_07 | AC | 29 ms
10,752 KB |
testcase_08 | AC | 30 ms
10,624 KB |
testcase_09 | AC | 31 ms
10,624 KB |
testcase_10 | AC | 30 ms
10,752 KB |
testcase_11 | AC | 31 ms
10,624 KB |
testcase_12 | AC | 30 ms
10,752 KB |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
ソースコード
N = int(input()) AB = [ tuple([int(j) for j in input().split()]) for _ in range(N)] AB = sorted(AB, key=lambda x:x[1], reverse=True) dp = [ [ 10**10 ]*(N+1) for _ in range(N+1)] # i,j iコメまで集めて、j 個タダでもらった dp[0][0] = 0 for i in range(1,N+1): for j in range(0,N+1): if j > 0: dp[i][j] = min( dp[i-1][j-1], dp[i][j], # タダで買う dp[i-1][j] + AB[i-1][0] + AB[i-1][1]* (i-j-1)) if j == 0: dp[i][j] = min ( dp[i][j], dp[i-1][j] + AB[i-1][0] + AB[i-1][1]* (i-j-1)) print(dp[N][N//3])