結果

問題 No.798 コレクション
ユーザー momoyuumomoyuu
提出日時 2024-10-06 18:40:29
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 22 ms / 2,000 ms
コード長 964 bytes
コンパイル時間 1,089 ms
コンパイル使用メモリ 104,328 KB
実行使用メモリ 24,192 KB
最終ジャッジ日時 2024-10-06 18:40:31
合計ジャッジ時間 2,219 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 1 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 4 ms
6,820 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 11 ms
12,416 KB
testcase_14 AC 17 ms
17,920 KB
testcase_15 AC 14 ms
15,744 KB
testcase_16 AC 8 ms
9,088 KB
testcase_17 AC 11 ms
12,800 KB
testcase_18 AC 21 ms
22,912 KB
testcase_19 AC 18 ms
18,944 KB
testcase_20 AC 8 ms
9,216 KB
testcase_21 AC 8 ms
8,576 KB
testcase_22 AC 15 ms
16,000 KB
testcase_23 AC 2 ms
6,820 KB
testcase_24 AC 22 ms
24,192 KB
testcase_25 AC 22 ms
24,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>

using namespace std;
using ll = long long;

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    int n;
    cin>>n;
    vector<ll> a(n),b(n);
    for(int i = 0;i<n;i++) cin>>a[i]>>b[i];

    int buy = 0;
    {
        int res = n;
        while(res>0){
            buy++;
            res--;
            if(buy%2==0) res--;
        }
    }
    vector<vector<ll>> dp(n+1,vector<ll>(buy+1,1e18));
    dp[0][0] = 0;
    vector<int> idx(n);
    for(int i = 0;i<n;i++) idx[i] = i;
    sort(idx.begin(),idx.end(),[&](int i,int j){
        return b[i] > b[j];
    });
    for(int i = 0;i<n;i++){
        for(int j = 0;j<=buy;j++){
            dp[i+1][j] = min(dp[i+1][j],dp[i][j]);
            if(j==buy) continue;
            int ni = idx[i];
            ll cost = a[ni] + j * b[ni];
            dp[i+1][j+1] = min(dp[i+1][j+1],dp[i][j]+cost);
        }
    }
    cout<<dp[n][buy]<<endl;
}   


0