結果
問題 | No.2869 yuusaan's Knapsacks |
ユーザー | tottoripaper |
提出日時 | 2024-09-03 15:54:43 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,453 bytes |
コンパイル時間 | 3,433 ms |
コンパイル使用メモリ | 223,144 KB |
実行使用メモリ | 10,276 KB |
最終ジャッジ日時 | 2024-09-03 15:54:53 |
合計ジャッジ時間 | 10,111 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 32 ms
6,944 KB |
testcase_04 | AC | 33 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | TLE | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
ソースコード
#include <bits/stdc++.h> using Bags = std::vector<std::stack<int>>; int N, M; std::vector<int> e; std::vector<int> v, w; void rec( int i, int val, Bags &bags, std::vector<int> &cap, int &max_val, Bags &max_bags ){ if(i == M){ if(val > max_val){ max_val = val; max_bags = bags; } return; } for(int j=0;j<N;j++){ if(w[i] <= cap[j]){ bags[j].emplace(i); cap[j] -= w[i]; rec(i + 1, val + v[i], bags, cap, max_val, max_bags); bags[j].pop(); cap[j] += w[i]; } } rec(i + 1, val, bags, cap, max_val, max_bags); } int main(){ std::cin.tie(nullptr); std::ios::sync_with_stdio(false); std::cin >> N >> M; e.resize(N); for(int i=0;i<N;i++){ std::cin >> e[i]; } v.resize(M); w.resize(M); for(int i=0;i<M;i++){ std::cin >> v[i] >> w[i]; } Bags bags(N); std::vector<int> cap(N); for(int i=0;i<N;i++){ cap[i] = e[i]; } int max_val = 0; Bags max_bags(N); rec(0, 0, bags, cap, max_val, max_bags); std::cout << max_val << std::endl; for(int i=0;i<N;i++){ std::cout << max_bags[i].size(); while(!max_bags[i].empty()){ int j = max_bags[i].top() + 1; max_bags[i].pop(); std::cout << " " << j; } std::cout << std::endl; } }