結果

問題 No.1430 Coup de Coupon
ユーザー simansiman
提出日時 2021-12-12 20:58:25
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 222 ms / 2,000 ms
コード長 1,031 bytes
コンパイル時間 1,875 ms
コンパイル使用メモリ 143,328 KB
実行使用メモリ 120,192 KB
最終ジャッジ日時 2024-07-21 09:02:29
合計ジャッジ時間 4,909 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 125 ms
120,064 KB
testcase_04 AC 4 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 126 ms
120,064 KB
testcase_07 AC 126 ms
120,064 KB
testcase_08 AC 126 ms
120,064 KB
testcase_09 AC 126 ms
120,064 KB
testcase_10 AC 126 ms
120,064 KB
testcase_11 AC 127 ms
120,064 KB
testcase_12 AC 127 ms
120,064 KB
testcase_13 AC 127 ms
120,064 KB
testcase_14 AC 127 ms
120,192 KB
testcase_15 AC 127 ms
120,192 KB
testcase_16 AC 126 ms
120,192 KB
testcase_17 AC 222 ms
120,064 KB
testcase_18 AC 128 ms
120,192 KB
testcase_19 AC 127 ms
120,192 KB
testcase_20 AC 39 ms
38,656 KB
testcase_21 AC 26 ms
27,392 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 3 ms
5,376 KB
testcase_25 AC 15 ms
16,768 KB
testcase_26 AC 10 ms
11,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cassert>
#include <cmath>
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <climits>
#include <map>
#include <queue>
#include <set>
#include <cstring>
#include <vector>

using namespace std;
typedef long long ll;

ll A[5010];
ll B[5010];
ll dp[5010][5010];

int main() {
  int N, C;
  cin >> N >> C;
  vector<ll> P(N);

  for (int i = 0; i < N; ++i) {
    cin >> P[i];
  }
  sort(P.begin(), P.end(), greater<ll>());

  int ia = 0;
  int ib = 0;
  for (int i = 0; i < C; ++i) {
    ll t, x;
    cin >> t >> x;

    if (t == 1) {
      A[ia++] = x;
    } else {
      B[ib++] = x;
    }
  }

  sort(A, A + ia, greater<ll>());
  sort(B, B + ib, greater<ll>());

  for (int i = N; i >= 0; --i) {
    for (int j = 0; j < i + 1; ++j) {
      if (i == N) {
        dp[i][j] = 0;
      } else {
        ll p1 = max(0LL, P[i] - A[j]) + dp[i + 1][j + 1];
        ll p2 = P[i] * (100 - B[i - j]) / 100 + dp[i + 1][j];
        dp[i][j] = min(p1, p2);
      }
    }
  }

  cout << dp[0][0] << endl;

  return 0;
}
0