結果

問題 No.798 コレクション
ユーザー pekempeypekempey
提出日時 2019-03-15 21:49:23
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 33 ms / 2,000 ms
コード長 923 bytes
コンパイル時間 740 ms
コンパイル使用メモリ 77,532 KB
実行使用メモリ 34,944 KB
最終ジャッジ日時 2024-07-01 20:48:33
合計ジャッジ時間 1,873 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 KB
testcase_06 AC 2 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 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 17 ms
22,272 KB
testcase_14 AC 24 ms
29,924 KB
testcase_15 AC 25 ms
27,904 KB
testcase_16 AC 14 ms
16,256 KB
testcase_17 AC 20 ms
22,912 KB
testcase_18 AC 32 ms
33,920 KB
testcase_19 AC 28 ms
30,720 KB
testcase_20 AC 14 ms
16,768 KB
testcase_21 AC 13 ms
15,232 KB
testcase_22 AC 25 ms
28,160 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 33 ms
34,944 KB
testcase_25 AC 33 ms
34,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using namespace std;

long long dp[2001][2020];

void to(long long *x, long long y) {
  *x = min(*x, y);
}

int main() {
  int N;
  cin >> N;
  vector<long long> A(N);
  vector<long long> B(N);
  vector<int> P(N);
  for (int i = 0; i < N; i++) {
    cin >> A[i] >> B[i];
    P[i] = i;
  }
  sort(P.begin(), P.end(), [&](int i, int j) {
    return B[i] > B[j];
  });
  for (int i = 0; i <= N; i++) {
    for (int j = 0; j <= N; j++) {
      dp[i][j] = 1e18;
    }
  }
  dp[0][0] = 0;
  for (int i = 0; i < N; i++) {
    for (int j = 0; j <= N; j++) {
      long long c = A[P[i]] + B[P[i]] * j;
      to(&dp[i + 1][j], dp[i][j]);
      to(&dp[i + 1][j + 1], dp[i][j] + c);
    }
  }
  long long ans = 1e18;
  for (int j = 0; j <= N; j++) {
    int k = j / 2;
    if (j + k >= N) {
      ans = min(ans, dp[N][j]);
    }
  }
  cout << ans << endl;
}
0