結果

問題 No.798 コレクション
ユーザー Y17Y17
提出日時 2019-03-15 22:58:28
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 678 bytes
コンパイル時間 1,356 ms
コンパイル使用メモリ 160,980 KB
実行使用メモリ 35,200 KB
最終ジャッジ日時 2024-07-01 21:27:11
合計ジャッジ時間 3,051 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
34,816 KB
testcase_01 AC 24 ms
34,944 KB
testcase_02 AC 25 ms
34,944 KB
testcase_03 AC 24 ms
34,944 KB
testcase_04 AC 24 ms
35,072 KB
testcase_05 AC 24 ms
34,944 KB
testcase_06 AC 24 ms
34,944 KB
testcase_07 AC 24 ms
34,944 KB
testcase_08 AC 24 ms
34,944 KB
testcase_09 AC 24 ms
34,944 KB
testcase_10 AC 24 ms
35,072 KB
testcase_11 AC 24 ms
34,944 KB
testcase_12 AC 25 ms
35,072 KB
testcase_13 AC 35 ms
35,200 KB
testcase_14 AC 41 ms
35,072 KB
testcase_15 AC 38 ms
35,072 KB
testcase_16 AC 31 ms
35,072 KB
testcase_17 AC 35 ms
35,072 KB
testcase_18 AC 47 ms
34,944 KB
testcase_19 AC 43 ms
35,072 KB
testcase_20 AC 31 ms
35,072 KB
testcase_21 AC 30 ms
34,944 KB
testcase_22 AC 38 ms
35,200 KB
testcase_23 AC 24 ms
34,944 KB
testcase_24 AC 45 ms
35,200 KB
testcase_25 AC 45 ms
35,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int n;
pair<long long, long long> p[3000];

long long memo[2010][2010];

long long dp(long long i, int nk, int cnt){
    if(i == n){
        return 0;
    }

    if(memo[i][nk] != -1) return memo[i][nk];

    long long ans = dp(i+1, nk, cnt+1) + p[i].first * cnt + p[i].second;
    if(nk > 0){
        ans = min(ans, dp(i+1, nk-1, cnt));
    }

    return memo[i][nk] = ans;
}

int main(){
    cin >> n;

    for(int i = 0;i < n;i++){
        cin >> p[i].second >> p[i].first;
    }

    sort(p, p+n, greater<pair<long long, long long> >());

    memset(memo, -1, sizeof(memo));

    cout << dp(0, n/3, 0) << endl;

    return 0;
}
0