結果
問題 | No.1430 Coup de Coupon |
ユーザー | kwm_t |
提出日時 | 2021-03-14 15:57:37 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,777 bytes |
コンパイル時間 | 1,871 ms |
コンパイル使用メモリ | 174,868 KB |
実行使用メモリ | 23,296 KB |
最終ジャッジ日時 | 2024-11-06 05:46:46 |
合計ジャッジ時間 | 9,675 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | RE | - |
testcase_05 | WA | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | WA | - |
testcase_09 | OLE | - |
testcase_10 | OLE | - |
testcase_11 | OLE | - |
testcase_12 | OLE | - |
testcase_13 | OLE | - |
testcase_14 | OLE | - |
testcase_15 | OLE | - |
testcase_16 | OLE | - |
testcase_17 | OLE | - |
testcase_18 | OLE | - |
testcase_19 | OLE | - |
testcase_20 | OLE | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
ソースコード
#include "bits/stdc++.h" //#include "atcoder/all" using namespace std; //using namespace atcoder; //using mint = modint1000000007; //const int mod = 1000000007; //using mint = modint998244353; //const int mod = 998244353; //const int INF = 1e9; //const long long LINF = 1e18; #define rep(i, n) for (int i = 0; i < (n); ++i) #define rep2(i,l,r)for(int i=(l);i<(r);++i) #define rrep(i, n) for (int i = (n-1); i >= 0; --i) #define rrep2(i,l,r)for(int i=(r-1);i>=(l);--i) #define all(x) (x).begin(),(x).end() #define allR(x) (x).rbegin(),(x).rend() #define endl "\n" int dp[5000][5000]; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int N, C; cin >> N >> C; vector<int>P(N); int sum = 0; rep(i, N) { cin >> P[i]; sum += P[i]; } sort(allR(P)); vector<int> C1; vector<int> C2; rep(i, C) { int t, x; cin >> t >> x; if (1 == t) { C1.push_back(x); } else { C2.push_back(x); } } sort(allR(C1)); sort(allR(C2)); dp[0][0] = 0; rep(i, C1.size() + 1) { rep(j, C2.size() + 1) { if ((i + j + 1) > N) { //商品がない dp[i + 1][j] = max(dp[i + 1][j], dp[i][j]); dp[i][j + 1] = max(dp[i][j + 1], dp[i][j]); continue; } { if (i < C1.size()) { int v = max(0, P[i + j] - C1[i]); dp[i + 1][j] = max(dp[i + 1][j], dp[i][j] + P[i + j] - v); } else { dp[i + 1][j] = max(dp[i + 1][j], dp[i][j]); } } { if (j < C2.size()) { int v = P[i + j] * (100 - C2[j]) / 100; dp[i][j + 1] = max(dp[i][j + 1], dp[i][j] + P[i + j] - v); } else { dp[i][j + 1] = max(dp[i][j + 1], dp[i][j]); } } } } rep(i, C1.size() + 1) { rep(j, C2.size() + 1) { cout << dp[i][j] << "_"; } cout << endl; } cout << sum - dp[C1.size()][C2.size()] << endl; return 0; }