結果

問題 No.798 コレクション
ユーザー Shinya FujitaShinya Fujita
提出日時 2024-12-01 17:51:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 671 bytes
コンパイル時間 412 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 104,264 KB
最終ジャッジ日時 2024-12-01 17:51:19
合計ジャッジ時間 3,674 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 36 ms
51,584 KB
testcase_02 AC 35 ms
51,840 KB
testcase_03 AC 35 ms
52,224 KB
testcase_04 AC 35 ms
51,712 KB
testcase_05 AC 34 ms
51,968 KB
testcase_06 AC 35 ms
51,840 KB
testcase_07 AC 39 ms
51,968 KB
testcase_08 AC 38 ms
52,096 KB
testcase_09 AC 36 ms
51,968 KB
testcase_10 AC 36 ms
51,840 KB
testcase_11 AC 35 ms
51,712 KB
testcase_12 AC 36 ms
51,712 KB
testcase_13 AC 120 ms
82,176 KB
testcase_14 AC 127 ms
99,456 KB
testcase_15 AC 108 ms
81,920 KB
testcase_16 AC 91 ms
85,120 KB
testcase_17 AC 103 ms
82,116 KB
testcase_18 AC 140 ms
104,264 KB
testcase_19 AC 131 ms
100,320 KB
testcase_20 AC 91 ms
85,472 KB
testcase_21 AC 86 ms
84,148 KB
testcase_22 AC 109 ms
81,960 KB
testcase_23 AC 42 ms
51,840 KB
testcase_24 AC 146 ms
104,180 KB
testcase_25 AC 145 ms
103,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

# dp[i][j] := i番目の商品まで見て、j個無料で買うことにしたときの最小値
INF = 10**18
dp = [[INF]*(N+1) for _ in range(N+1)]
dp[0][0] = 0

for i, (ai, bi) in enumerate(items, start=1):
    for j in range(i+1):
        # i個の商品のうち、j個は無料で買う => (i-j)個は有料
        dp[i][j] = min(dp[i][j], dp[i-1][j-1])
        if j < i:
            dp[i][j] = min(dp[i][j], dp[i-1][j]+ai+(i-j-1)*bi)


num = 0
day = 0
while N:
    N -= 1
    if day and N:
        N -= 1
        num += 1
    day ^= 1

print(dp[-1][num])
0