結果

問題 No.1430 Coup de Coupon
ユーザー startcppstartcpp
提出日時 2021-03-14 14:20:46
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 1,361 bytes
コンパイル時間 1,077 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 100,076 KB
最終ジャッジ日時 2024-11-06 04:06:09
合計ジャッジ時間 2,199 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 4 ms
6,816 KB
testcase_04 AC 27 ms
100,076 KB
testcase_05 AC 4 ms
6,820 KB
testcase_06 AC 26 ms
98,516 KB
testcase_07 AC 26 ms
98,436 KB
testcase_08 AC 5 ms
6,816 KB
testcase_09 AC 18 ms
14,592 KB
testcase_10 AC 26 ms
23,708 KB
testcase_11 AC 32 ms
32,568 KB
testcase_12 AC 37 ms
43,392 KB
testcase_13 AC 41 ms
52,240 KB
testcase_14 AC 41 ms
62,016 KB
testcase_15 AC 41 ms
72,004 KB
testcase_16 AC 38 ms
81,724 KB
testcase_17 AC 34 ms
91,948 KB
testcase_18 AC 41 ms
52,008 KB
testcase_19 AC 42 ms
53,528 KB
testcase_20 AC 34 ms
54,256 KB
testcase_21 AC 3 ms
6,816 KB
testcase_22 AC 2 ms
6,816 KB
testcase_23 AC 3 ms
6,816 KB
testcase_24 AC 2 ms
6,820 KB
testcase_25 AC 3 ms
6,820 KB
testcase_26 AC 7 ms
20,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <functional>
#include <vector>
#define rep(i, n) for(i = 0; i < n; i++)
using namespace std;

void chmin(int &a, int b) { a = min(a, b); }

int INF = 1e+9;
int n, C;
int p[5000];
vector<int> hiki;
vector<int> wari;
int dp[5001][5001];

signed main() {
	int i, j;
	
	cin >> n >> C;
	rep(i, n) cin >> p[i];
	sort(p, p + n, greater<int>());
	
	rep(i, C) {
		int t, x; cin >> t >> x;
		if (t == 1) { hiki.push_back(x); }
		else { wari.push_back(x); }
	}
	sort(hiki.begin(), hiki.end(), greater<int>());
	sort(wari.begin(), wari.end(), greater<int>());
	
	rep(i, hiki.size() + 1) rep(j, wari.size() + 1) dp[i][j] = INF;
	dp[0][0] = 0;
	
	rep(i, hiki.size() + 1) {
		rep(j, wari.size() + 1) {
			if (i + j >= n) continue;
			if (i < hiki.size()) {
				chmin(dp[i + 1][j], dp[i][j] + max(p[i + j] - hiki[i], 0));
			}
			if (j < wari.size()) {
				chmin(dp[i][j + 1], dp[i][j] + p[i + j] * (100 - wari[j]) / 100);
			}
		}
	}
	
	if (C >= n) {
		int ans = INF;
		rep(i, hiki.size() + 1) {
			int j = n - i;
			if (j > wari.size()) continue;
			chmin(ans, dp[i][j]);
		}
		cout << ans << endl;
	}
	else {
		int ans = INF;
		rep(i, hiki.size() + 1) {
			int j = C - i;
			if (j > wari.size()) continue;
			chmin(ans, dp[i][j]);
		}
		
		for (i = C; i < n; i++) {
			ans += p[i];
		}
		cout << ans << endl;
	}
	return 0;
}
0