結果

問題 No.798 コレクション
ユーザー roarisroaris
提出日時 2020-12-02 23:41:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 173 ms / 2,000 ms
コード長 520 bytes
コンパイル時間 421 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 107,920 KB
最終ジャッジ日時 2024-09-13 10:54:00
合計ジャッジ時間 3,825 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,480 KB
testcase_01 AC 38 ms
52,432 KB
testcase_02 AC 38 ms
53,248 KB
testcase_03 AC 38 ms
53,380 KB
testcase_04 AC 39 ms
52,676 KB
testcase_05 AC 40 ms
52,736 KB
testcase_06 AC 39 ms
52,788 KB
testcase_07 AC 40 ms
53,296 KB
testcase_08 AC 39 ms
52,816 KB
testcase_09 AC 38 ms
53,132 KB
testcase_10 AC 39 ms
53,444 KB
testcase_11 AC 38 ms
51,940 KB
testcase_12 AC 38 ms
53,808 KB
testcase_13 AC 120 ms
88,732 KB
testcase_14 AC 140 ms
88,248 KB
testcase_15 AC 132 ms
88,640 KB
testcase_16 AC 102 ms
85,396 KB
testcase_17 AC 117 ms
88,576 KB
testcase_18 AC 173 ms
106,084 KB
testcase_19 AC 141 ms
88,932 KB
testcase_20 AC 102 ms
85,504 KB
testcase_21 AC 81 ms
74,908 KB
testcase_22 AC 131 ms
88,576 KB
testcase_23 AC 37 ms
52,132 KB
testcase_24 AC 168 ms
107,908 KB
testcase_25 AC 171 ms
107,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
AB = [tuple(map(int, input().split())) for _ in range(N)]
AB.sort(key=lambda t: t[1], reverse=True)
dp = [[10**18]*(N+1) for _ in range(N+1)]
dp[0][0] = 0

for i in range(N):
    A, B = AB[i]
    
    for j in range(N+1):
        dp[i+1][j] = min(dp[i+1][j], dp[i][j])
        
        if j+1<=N:
            dp[i+1][j+1] = min(dp[i+1][j+1], dp[i][j]+A+B*j)
    
ans = 10**18

for i in range(N+1):
    if i//2>=N-i:
        ans = min(ans, dp[N][i])
    
print(ans)
0