結果

問題 No.2869 yuusaan's Knapsacks
ユーザー t98slidert98slider
提出日時 2024-09-01 20:22:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 817 ms / 4,500 ms
コード長 1,296 bytes
コンパイル時間 2,438 ms
コンパイル使用メモリ 207,568 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-01 20:22:44
合計ジャッジ時間 10,335 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 25 ms
6,940 KB
testcase_04 AC 25 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 514 ms
6,944 KB
testcase_07 AC 90 ms
6,940 KB
testcase_08 AC 7 ms
6,944 KB
testcase_09 AC 6 ms
6,944 KB
testcase_10 AC 185 ms
6,944 KB
testcase_11 AC 17 ms
6,940 KB
testcase_12 AC 475 ms
6,940 KB
testcase_13 AC 14 ms
6,940 KB
testcase_14 AC 218 ms
6,944 KB
testcase_15 AC 49 ms
6,940 KB
testcase_16 AC 105 ms
6,944 KB
testcase_17 AC 817 ms
6,940 KB
testcase_18 AC 492 ms
6,944 KB
testcase_19 AC 332 ms
6,940 KB
testcase_20 AC 6 ms
6,940 KB
testcase_21 AC 329 ms
6,944 KB
testcase_22 AC 455 ms
6,944 KB
testcase_23 AC 14 ms
6,944 KB
testcase_24 AC 652 ms
6,944 KB
testcase_25 AC 11 ms
6,944 KB
testcase_26 AC 681 ms
6,944 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 106 ms
6,944 KB
testcase_29 AC 515 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
	ios::sync_with_stdio(false);
	cin.tie(0);
	constexpr int r = 1'000'000'000;
	int n, m;
	cin >> n >> m;
	vector<int> a(n);
	vector<pair<int,int>> b(m);
	vector<int> dpv(1 << m), dpw(1 << m), par(1 << m, -1), dp(1 << m, -2);
	for(auto &&v : a) cin >> v;
	for(auto &&[v, w] : b) cin >> v >> w;
	for(int S = 1; S < (1 << m); S++){
		int sv = 0, sw = 0;
		for(int i = 0; i < m; i++){
			if(S >> i & 1){
				sv += b[i].first;
				if(sw <= r) sw += b[i].second;
			}
		}
		dpv[S] = sv;
		dpw[S] = sw;
	}
	const int SS = (1 << m) - 1;
	dp[0] = -1;
	for(int i = 0; i < n; i++){
		int w = a[i];
		for(int S = SS; S >= 0; S--){
			if(dp[S] == -2) continue;
			int T = SS ^ S;
			for(int U = T; U > 0; U = (U - 1) & T){
				if(dpw[U] <= w && dp[S | U] == -2){
					dp[S | U] = i;
					par[S | U] = S;
				}
			}
		}
	}
	vector<int> ans(n);
	int mx = 0, pos = 0;
	for(int S = 1; S < (1 << m); S++){
		if(dp[S] != -2 && dpv[S] > mx){
			mx = dpv[S];
			pos = S;
		}
	}
	while(pos != 0){
		ans[dp[pos]] = pos ^ par[pos];
		pos = par[pos];
	}
	cout << mx << '\n';
	for(int i = 0; i < n; i++){
		cout << __builtin_popcount(ans[i]);
		for(int j = 0; j < m; j++){
			if(ans[i] >> j & 1) cout << ' ' << j + 1;
		}
		cout << '\n';
	}
}
0