結果

問題 No.2730 Two Types Luggage
ユーザー anago-pieanago-pie
提出日時 2024-04-27 15:48:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 591 ms / 2,000 ms
コード長 1,895 bytes
コンパイル時間 2,685 ms
コンパイル使用メモリ 208,864 KB
実行使用メモリ 18,944 KB
最終ジャッジ日時 2024-11-15 19:15:55
合計ジャッジ時間 18,111 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 7 ms
5,248 KB
testcase_05 AC 3 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 4 ms
5,248 KB
testcase_10 AC 17 ms
5,248 KB
testcase_11 AC 367 ms
14,848 KB
testcase_12 AC 572 ms
18,688 KB
testcase_13 AC 295 ms
12,416 KB
testcase_14 AC 365 ms
14,848 KB
testcase_15 AC 174 ms
6,272 KB
testcase_16 AC 134 ms
7,552 KB
testcase_17 AC 483 ms
18,048 KB
testcase_18 AC 435 ms
16,896 KB
testcase_19 AC 38 ms
5,248 KB
testcase_20 AC 170 ms
8,704 KB
testcase_21 AC 345 ms
14,336 KB
testcase_22 AC 488 ms
18,560 KB
testcase_23 AC 49 ms
5,248 KB
testcase_24 AC 199 ms
9,572 KB
testcase_25 AC 370 ms
15,068 KB
testcase_26 AC 101 ms
6,400 KB
testcase_27 AC 349 ms
14,336 KB
testcase_28 AC 189 ms
9,216 KB
testcase_29 AC 436 ms
17,024 KB
testcase_30 AC 124 ms
5,248 KB
testcase_31 AC 287 ms
12,288 KB
testcase_32 AC 258 ms
11,392 KB
testcase_33 AC 576 ms
18,944 KB
testcase_34 AC 591 ms
18,944 KB
testcase_35 AC 571 ms
18,816 KB
testcase_36 AC 578 ms
18,816 KB
testcase_37 AC 572 ms
18,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for(int i=0; i<n; i++)
#define debug 0
#define YES cout << "Yes" << endl;
#define NO cout << "No" << endl;
using ll = long long;
using ld = long double;
const int mod = 998244353;
const int MOD = 1000000007;
const double pi = atan2(0, -1);
const int inf = 1 << 31 - 1;
const ll INF = 1LL << 63-1;
#include <time.h>
#include <chrono>

//vectorの中身を空白区切りで出力
template<typename T> 
void print1(vector<T> v) {
	for (int i = 0; i < v.size(); i++) {
		cout << v[i];
		if (i < v.size() - 1) {
			cout << " ";
		}
	}
}

//vectorの中身を改行区切りで出力
template<typename T>
void print2(vector<T> v) {
	for (auto x : v) {
		cout << x << endl;
	}
}

//二次元配列を出力
template<typename T>
void printvv(vector<vector<T>> vv) {
	for (vector<T> v : vv) {
		print1(v);
		cout << endl;
	}
}

//vectorを降順にソート
template<typename T>
void rsort(vector<T> &v) {
	sort(v.begin(), v.end());
	reverse(v.begin(), v.end());
}

//昇順priority_queueを召喚
template<typename T>
struct rpriority_queue {
	priority_queue<T, vector<T>, greater<T>> pq;

	void push(T x) {
		pq.push(x);
	}

	void pop() {
		pq.pop();
	}

	T top() {
		return pq.top();
	}

	size_t size() {
		return pq.size();
	}

	bool empty() {
		return pq.empty();
	}
};

int main() {
	ll N, M, W;
	cin >> N >> M >> W;
	vector<ll> X(N);
	rep(i, N) {
		cin >> X[i];
	}
	vector<vector<ll>> Y(M, vector<ll>(2));
	rep(i, M) {
		cin >> Y[i][0];
	}
	rep(i, M) {
		cin >> Y[i][1];
	}

	rsort(X);

	vector<ll> sum(N + 1);
	sum[0] = 0;
	rep(i, N) {
		sum[i + 1] = sum[i] + X[i];
	}

	ll ans = 0;
	for (int i = 0; i < (1 << M); i++) {
		bitset<20> b = i;
		ll w = 0, v = 0;
		rep(j, M) {
			if (b[j]) {
				w += Y[j][0];
				v += Y[j][1];
			}
		}
		if (w <= W) {
			v += sum[min(W - w, N)];
			ans = max(ans, v);
		}
	}

	cout << ans << endl;
}
0