結果

問題 No.798 コレクション
ユーザー t33ft33f
提出日時 2019-03-17 18:34:22
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 13 ms / 2,000 ms
コード長 631 bytes
コンパイル時間 995 ms
コンパイル使用メモリ 77,392 KB
実行使用メモリ 26,112 KB
最終ジャッジ日時 2024-07-07 13:23:55
合計ジャッジ時間 2,027 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 9 ms
15,616 KB
testcase_14 AC 9 ms
21,120 KB
testcase_15 AC 8 ms
19,072 KB
testcase_16 AC 6 ms
12,032 KB
testcase_17 AC 8 ms
16,000 KB
testcase_18 AC 12 ms
24,960 KB
testcase_19 AC 10 ms
21,888 KB
testcase_20 AC 7 ms
12,416 KB
testcase_21 AC 6 ms
11,392 KB
testcase_22 AC 10 ms
19,200 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 12 ms
26,112 KB
testcase_25 AC 13 ms
26,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <vector>
#include <algorithm>
#include <iostream>
using namespace std;

long long cost[2001][2001];

int main () {
    int n; cin >> n;
    vector<pair<int, int> > P(n);
    for (auto &p : P) cin >> p.second >> p.first;
    sort(P.rbegin(), P.rend());

    for (int i = 1; i <= n; i++) {
        for (int j = 1; j <= i; j++) {
            long long c = cost[i-1][j-1] + P[i-1].second + P[i-1].first * (j-1);
            if (i == j || cost[i-1][j] > c) {
                cost[i][j] = c;
            } else {
                cost[i][j] = cost[i-1][j];
            }
        }
    }
    cout << cost[n][2*(n+1)/3] << endl;
}
0