結果
問題 | No.15 カタログショッピング |
ユーザー | hirokazu1020 |
提出日時 | 2015-04-24 02:31:17 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 35 ms / 5,000 ms |
コード長 | 1,188 bytes |
コンパイル時間 | 1,178 ms |
コンパイル使用メモリ | 98,380 KB |
実行使用メモリ | 6,912 KB |
最終ジャッジ日時 | 2024-07-05 00:44:23 |
合計ジャッジ時間 | 1,626 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 27 ms
6,912 KB |
testcase_06 | AC | 31 ms
6,912 KB |
testcase_07 | AC | 33 ms
6,784 KB |
testcase_08 | AC | 35 ms
6,912 KB |
testcase_09 | AC | 33 ms
6,912 KB |
ソースコード
#include<sstream> #include<iostream> #include<cstdio> #include<cstdlib> #include<cstring> #include<cmath> #include<string> #include<vector> #include<set> #include<map> #include<queue> #include<numeric> #include<functional> #include<algorithm> using namespace std; #define INF (1<<29) #define rep(i,n) for(int i=0;i<(int)(n);i++) #define all(v) v.begin(),v.end() #define uniq(v) v.erase(unique(all(v)),v.end()) #define indexOf(v,x) (find(all(v),x)-v.begin()) int main(){ int n,s,p[31]; map<int,vector<int> > mp; map<int,vector<int> >::iterator it; cin>>n>>s; rep(i,n)cin>>p[i]; rep(i,1<<n/2){ int sum=0; rep(j,n/2)if(i>>j&1)sum+=p[(n+1)/2+j]; mp[sum].push_back(i); } vector<vector<int> > ans; rep(i,1<<(n+1)/2){ int sum=0; rep(j,(n+1)/2)if(i>>j&1)sum+=p[j]; it=mp.find(s-sum); if(it!=mp.end()){ vector<int> &v=it->second; rep(j,v.size()){ int bit=i|v[j]<<(n+1)/2; bool f=true; ans.push_back(vector<int>()); rep(k,n){ if(bit>>k&1)ans.back().push_back(k+1); } } } } sort(all(ans)); rep(i,ans.size()){ bool f=true; rep(j,ans[i].size()){ if(!f)cout<<' '; f=false; cout<<ans[i][j]; } cout<<endl; } return 0; }