結果
問題 | No.2869 yuusaan's Knapsacks |
ユーザー | cho435 |
提出日時 | 2024-08-31 02:10:25 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,316 bytes |
コンパイル時間 | 4,923 ms |
コンパイル使用メモリ | 269,288 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-08-31 02:10:33 |
合計ジャッジ時間 | 7,366 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 6 ms
6,940 KB |
testcase_07 | AC | 7 ms
6,940 KB |
testcase_08 | AC | 28 ms
6,940 KB |
testcase_09 | AC | 26 ms
6,944 KB |
testcase_10 | AC | 6 ms
6,940 KB |
testcase_11 | WA | - |
testcase_12 | AC | 6 ms
6,944 KB |
testcase_13 | AC | 9 ms
6,944 KB |
testcase_14 | WA | - |
testcase_15 | AC | 15 ms
6,940 KB |
testcase_16 | WA | - |
testcase_17 | AC | 6 ms
6,944 KB |
testcase_18 | AC | 7 ms
6,940 KB |
testcase_19 | AC | 6 ms
6,944 KB |
testcase_20 | AC | 25 ms
6,944 KB |
testcase_21 | AC | 6 ms
6,940 KB |
testcase_22 | AC | 6 ms
6,940 KB |
testcase_23 | AC | 19 ms
6,948 KB |
testcase_24 | AC | 6 ms
6,940 KB |
testcase_25 | WA | - |
testcase_26 | AC | 6 ms
6,944 KB |
testcase_27 | AC | 2 ms
6,940 KB |
testcase_28 | AC | 6 ms
6,944 KB |
testcase_29 | AC | 6 ms
6,940 KB |
ソースコード
#include <atcoder/all> #include <bits/stdc++.h> using namespace std; using ll = long long; #define rep(i, s, t) for (ll i = s; i < (ll)(t); i++) template<typename T> bool chmin(T &x, T y) { return x > y ? (x = y, true) : false; } template<typename T> bool chmax(T &x, T y) { return x < y ? (x = y, true) : false; } struct io_setup { io_setup() { ios::sync_with_stdio(false); std::cin.tie(nullptr); cout << fixed << setprecision(15); } } io_setup; int main(){ int n,m; cin>>n>>m; vector<int> e(n); rep(i,0,n) cin>>e.at(i); vector<pair<int,int>> vw(m); for(auto&[v,w]:vw) cin>>v>>w; ll mx=0; vector<vector<int>> ans(n); rep(bit,1,(1<<m)){ ll tmp=0; rep(i,0,m) if((bit>>i)&1) tmp+=vw.at(i).first; if(tmp<mx) continue; vector<pair<int,int>> nw; rep(i,0,m) if((bit>>i)&1) nw.push_back({vw.at(i).second,i}); sort(nw.begin(),nw.end()); auto ce=e; vector<vector<int>> nans(n); int flg=0; while(!nw.empty()){ auto[x,i]=nw.back(); nw.pop_back(); int j=-1,d=1e9; rep(k,0,n) if(ce.at(k)>=x){ if(chmin(d,ce.at(k)-x)) j=k; } if(j==-1){ flg=1; break; } ce.at(j)-=x; nans.at(j).push_back(i); } if(!flg) swap(ans,nans),mx=tmp; } cout<<mx<<"\n"; rep(i,0,n){ cout<<ans.at(i).size()<<" "; for(auto x:ans.at(i)) cout<<x+1<<" "; cout<<"\n"; } }