結果

問題 No.798 コレクション
ユーザー kohei2019kohei2019
提出日時 2022-04-12 15:21:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 250 ms / 2,000 ms
コード長 474 bytes
コンパイル時間 444 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 122,156 KB
最終ジャッジ日時 2024-12-17 21:23:14
合計ジャッジ時間 4,122 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,944 KB
testcase_01 AC 40 ms
52,584 KB
testcase_02 AC 39 ms
52,648 KB
testcase_03 AC 38 ms
53,364 KB
testcase_04 AC 38 ms
53,544 KB
testcase_05 AC 40 ms
53,560 KB
testcase_06 AC 38 ms
52,940 KB
testcase_07 AC 40 ms
53,876 KB
testcase_08 AC 39 ms
52,404 KB
testcase_09 AC 39 ms
52,580 KB
testcase_10 AC 40 ms
52,292 KB
testcase_11 AC 37 ms
52,988 KB
testcase_12 AC 40 ms
52,748 KB
testcase_13 AC 133 ms
91,424 KB
testcase_14 AC 168 ms
103,160 KB
testcase_15 AC 166 ms
103,308 KB
testcase_16 AC 104 ms
82,516 KB
testcase_17 AC 136 ms
91,500 KB
testcase_18 AC 249 ms
122,156 KB
testcase_19 AC 230 ms
121,504 KB
testcase_20 AC 133 ms
91,824 KB
testcase_21 AC 111 ms
81,828 KB
testcase_22 AC 192 ms
106,096 KB
testcase_23 AC 39 ms
53,684 KB
testcase_24 AC 163 ms
100,872 KB
testcase_25 AC 250 ms
119,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
lsAB = []
for i in range(N):
    A,B = map(int,input().split())
    lsAB.append([A,B])
lsAB.sort(key=lambda x:-x[1])
INF = float('INF')
if N%3==0:
    M = 2*(N//3)
elif N % 3 == 1:
    M = 2*(N//3)+1
else:
    M = 2*(N//3)+2
dp = [[INF]*(N) for i in range(M)]
for i in range(N):
    dp[0][i] = lsAB[i][0]
for i in range(1,M):
    rm = INF
    for j in range(N):
        dp[i][j]=rm+lsAB[j][0]+lsAB[j][1]*i
        rm = min(rm,dp[i-1][j])
print(min(dp[-1]))
0