結果

問題 No.2869 yuusaan's Knapsacks
ユーザー shobonvipshobonvip
提出日時 2024-10-02 18:53:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 142 ms / 4,500 ms
コード長 2,182 bytes
コンパイル時間 4,188 ms
コンパイル使用メモリ 264,264 KB
実行使用メモリ 8,832 KB
最終ジャッジ日時 2024-10-02 18:53:35
合計ジャッジ時間 6,571 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 18 ms
6,820 KB
testcase_04 AC 18 ms
6,820 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 22 ms
8,704 KB
testcase_07 AC 24 ms
6,820 KB
testcase_08 AC 12 ms
6,816 KB
testcase_09 AC 7 ms
6,820 KB
testcase_10 AC 18 ms
6,816 KB
testcase_11 AC 19 ms
6,820 KB
testcase_12 AC 30 ms
7,936 KB
testcase_13 AC 17 ms
6,816 KB
testcase_14 AC 38 ms
6,816 KB
testcase_15 AC 16 ms
6,820 KB
testcase_16 AC 20 ms
6,820 KB
testcase_17 AC 69 ms
8,832 KB
testcase_18 AC 40 ms
7,680 KB
testcase_19 AC 34 ms
6,912 KB
testcase_20 AC 8 ms
6,824 KB
testcase_21 AC 43 ms
7,168 KB
testcase_22 AC 84 ms
7,040 KB
testcase_23 AC 10 ms
6,816 KB
testcase_24 AC 57 ms
7,936 KB
testcase_25 AC 13 ms
6,816 KB
testcase_26 AC 142 ms
7,168 KB
testcase_27 AC 2 ms
6,816 KB
testcase_28 AC 18 ms
8,704 KB
testcase_29 AC 22 ms
8,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

//* ATCODER
#include<atcoder/all>
using namespace atcoder;
typedef modint998244353 mint;
//*/

/* BOOST MULTIPRECISION
#include<boost/multiprecision/cpp_int.hpp>
using namespace boost::multiprecision;
//*/

typedef long long ll;

#define rep(i, s, n) for (int i = (int)(s); i < (int)(n); i++)
#define rrep(i, s, n) for (int i = (int)(n)-1; i >= (int)(s); i--)

template <typename T> bool chmin(T &a, const T &b) {
	if (a <= b) return false;
	a = b;
	return true;
}

template <typename T> bool chmax(T &a, const T &b) {
	if (a >= b) return false;
	a = b;
	return true;
}

template <typename T> T max(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmax(ret, a[i]);
	return ret;
}

template <typename T> T min(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmin(ret, a[i]);
	return ret;
}

template <typename T> T sum(vector<T> &a){
	T ret = 0;
	for (int i=0; i<(int)a.size(); i++) ret += a[i];
	return ret;
}

int main(){
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);

	int n, m; cin >> n >> m;
	vector<ll> e(n), w(m), w_sum(1<<m);
	vector<int> v(m);
	vector<int> v_sum(1<<m);
	
	rep(i,0,n) cin >> e[i];
	rep(i,0,m){
		cin >> v[i] >> w[i];
	}
	rep(i,0,1<<m){
		rep(j,0,m){
			if(i>>j&1){
				v_sum[i]+=v[j];
				w_sum[i]+=w[j];
			}
		}
	}

	vector cf(n+1, vector<int>(1<<m, -1));
	cf[0][0] = 0;

	rep(i,0,n){
		rep(j,0,1<<m){
			if(w_sum[j] <= e[i]){
				int mask = ((1<<m)-1)^j;
				int k = mask;
				while (k > 0) {
					if (cf[i][k] != -1) {
						cf[i+1][k|j] = j;
					}
					k = (k-1) & mask;
				}
				if (cf[i][0] != -1) {
					cf[i+1][j] = j;
				}
			}
		}
	}

	int ans = -1;
	int ansind = -1;
	rep(i,0,1<<m){
		if(cf[n][i] >= 0) {
			if(chmax(ans,v_sum[i])) {
				ansind = i;
			}
		}
	}

	vector bucket(n, vector<int>(0));
	int now = ansind;
	rrep(i,0,n){
		int t = cf[i+1][now];
		rep(j,0,m){
			if(t>>j&1){
				bucket[i].push_back(j+1);
			}
		}
		now = now^t;
	}

	cout << ans << '\n';
	rep(i,0,n){
		cout << (int)bucket[i].size() << ' ';
		rep(j,0,(int)bucket[i].size()){
			cout << bucket[i][j] << ' ';
		}
		cout << '\n';
	}


}

0