結果

問題 No.798 コレクション
ユーザー AEnAEn
提出日時 2023-04-17 22:41:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 391 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 81,780 KB
実行使用メモリ 76,928 KB
最終ジャッジ日時 2024-10-12 22:47:19
合計ジャッジ時間 3,587 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,712 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 40 ms
52,160 KB
testcase_03 AC 40 ms
52,352 KB
testcase_04 AC 39 ms
52,352 KB
testcase_05 AC 37 ms
51,968 KB
testcase_06 AC 37 ms
51,968 KB
testcase_07 AC 40 ms
51,840 KB
testcase_08 AC 37 ms
51,584 KB
testcase_09 AC 37 ms
51,840 KB
testcase_10 AC 37 ms
51,816 KB
testcase_11 AC 37 ms
51,456 KB
testcase_12 AC 37 ms
52,352 KB
testcase_13 AC 164 ms
76,416 KB
testcase_14 AC 138 ms
76,872 KB
testcase_15 AC 127 ms
76,544 KB
testcase_16 AC 85 ms
76,160 KB
testcase_17 AC 110 ms
76,800 KB
testcase_18 AC 178 ms
76,928 KB
testcase_19 AC 161 ms
76,792 KB
testcase_20 AC 107 ms
76,416 KB
testcase_21 AC 103 ms
76,300 KB
testcase_22 AC 147 ms
76,604 KB
testcase_23 AC 37 ms
51,712 KB
testcase_24 AC 120 ms
76,756 KB
testcase_25 AC 180 ms
76,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
item = [list(map(int, input().split())) for _ in range(N)]
item.sort(reverse=True,key = lambda x:x[1])

dp = [float('inf')]*(N-N//3+1)
dp[0] = 0
for i in range(N):
    a,b = item[i]
    ndp = [float('inf')]*(N-N//3+1)
    ndp[0] = 0
    for j in range(1,N-N//3+1):
        ndp[j] = min(dp[j],ndp[j])
        ndp[j] = min(ndp[j],dp[j-1]+a+b*(j-1))
    dp = ndp
print(dp[-1])
0