結果

問題 No.2869 yuusaan's Knapsacks
ユーザー t98slidert98slider
提出日時 2024-09-01 20:13:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,295 bytes
コンパイル時間 2,347 ms
コンパイル使用メモリ 206,492 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-01 20:13:12
合計ジャッジ時間 10,646 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 26 ms
6,940 KB
testcase_04 WA -
testcase_05 AC 2 ms
6,940 KB
testcase_06 WA -
testcase_07 AC 94 ms
6,940 KB
testcase_08 AC 7 ms
6,940 KB
testcase_09 AC 7 ms
6,944 KB
testcase_10 AC 190 ms
6,944 KB
testcase_11 AC 18 ms
6,940 KB
testcase_12 AC 463 ms
6,940 KB
testcase_13 AC 14 ms
6,940 KB
testcase_14 AC 224 ms
6,940 KB
testcase_15 AC 50 ms
6,944 KB
testcase_16 AC 108 ms
6,944 KB
testcase_17 AC 823 ms
6,940 KB
testcase_18 AC 523 ms
6,944 KB
testcase_19 AC 328 ms
6,944 KB
testcase_20 AC 7 ms
6,944 KB
testcase_21 AC 337 ms
6,944 KB
testcase_22 AC 507 ms
6,944 KB
testcase_23 AC 14 ms
6,940 KB
testcase_24 AC 649 ms
6,944 KB
testcase_25 AC 11 ms
6,944 KB
testcase_26 AC 741 ms
6,940 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

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 && sw <= r; i++){
			if(S >> i & 1){
				sv += b[i].first;
				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