結果

問題 No.798 コレクション
ユーザー betrue12betrue12
提出日時 2019-03-15 21:59:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 31 ms / 2,000 ms
コード長 910 bytes
コンパイル時間 2,618 ms
コンパイル使用メモリ 204,948 KB
実行使用メモリ 34,944 KB
最終ジャッジ日時 2024-07-01 20:56:21
合計ジャッジ時間 4,031 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 11 ms
24,436 KB
testcase_14 AC 15 ms
29,824 KB
testcase_15 AC 24 ms
27,904 KB
testcase_16 AC 14 ms
16,256 KB
testcase_17 AC 19 ms
22,912 KB
testcase_18 AC 21 ms
33,816 KB
testcase_19 AC 27 ms
30,592 KB
testcase_20 AC 13 ms
16,640 KB
testcase_21 AC 12 ms
15,360 KB
testcase_22 AC 24 ms
27,904 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 31 ms
34,944 KB
testcase_25 AC 22 ms
34,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

void chmin(int64_t& a, int64_t b){
    a = min(a, b);
}

int main(){
    int N;
    pair<int, int> BA[2000];
    cin >> N;
    for(int i=0; i<N; i++){
        int a, b;
        cin >> a >> b;
        BA[i] = {b, a};
    }
    sort(BA, BA+N, greater<>());

    int M = 0, get = 0;
    while(get < N){
        M++;
        get++;
        if(M % 2 == 0) get++;
    }

    const int64_t INF = 1e18;
    static int64_t dp[2010][2010];
    for(int i=0; i<=N; i++) for(int j=0; j<=N; j++) dp[i][j] = INF;
    dp[0][0] = 0;
    for(int i=0; i<N; i++){
        int b = BA[i].first, a = BA[i].second;
        for(int j=0; j<=M; j++){
            chmin(dp[i+1][j], dp[i][j]);
            if(j < M){
                int64_t result = dp[i][j] + a + b*j;
                chmin(dp[i+1][j+1], result);
            }
        }
    }

    cout << dp[N][M] << endl;
    return 0;
}
0