結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 41 ms
52,096 KB
testcase_04 AC 40 ms
51,840 KB
testcase_05 AC 41 ms
51,840 KB
testcase_06 AC 45 ms
51,840 KB
testcase_07 AC 40 ms
51,840 KB
testcase_08 AC 40 ms
51,584 KB
testcase_09 AC 42 ms
51,968 KB
testcase_10 AC 41 ms
51,968 KB
testcase_11 AC 41 ms
51,584 KB
testcase_12 AC 41 ms
52,096 KB
testcase_13 AC 165 ms
91,648 KB
testcase_14 AC 181 ms
103,680 KB
testcase_15 AC 180 ms
103,296 KB
testcase_16 AC 116 ms
82,304 KB
testcase_17 AC 148 ms
91,520 KB
testcase_18 AC 266 ms
122,368 KB
testcase_19 AC 244 ms
121,472 KB
testcase_20 AC 144 ms
92,160 KB
testcase_21 AC 121 ms
81,920 KB
testcase_22 AC 207 ms
105,984 KB
testcase_23 AC 41 ms
51,968 KB
testcase_24 AC 177 ms
100,992 KB
testcase_25 AC 268 ms
119,296 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