結果
問題 | No.15 カタログショッピング |
ユーザー | monnu |
提出日時 | 2021-07-15 22:37:11 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 18 ms / 5,000 ms |
コード長 | 1,163 bytes |
コンパイル時間 | 1,866 ms |
コンパイル使用メモリ | 177,580 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-04 23:47:28 |
合計ジャッジ時間 | 2,617 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 16 ms
6,944 KB |
testcase_06 | AC | 16 ms
6,944 KB |
testcase_07 | AC | 17 ms
6,940 KB |
testcase_08 | AC | 18 ms
6,944 KB |
testcase_09 | AC | 17 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; //#include <atcoder/all> //using namespace atcoder; using ll=long long; using Graph=vector<vector<int>>; #define MAX 1000000 #define MOD 1000000007 //#define MOD 998244353 #define INF 1000000000 //#define INF 1000000000000000000 int main(){ int N; ll S; cin>>N>>S; vector<ll> P(N); for(int i=0;i<N;i++){ cin>>P[i]; } vector<pair<ll,int>> a; int m=N-N/2; for(int i=0;i<(1<<m);i++){ int bit=i; ll sum=0; for(int j=0;j<m;j++){ if(((bit>>(m-1-j))&1)==0){ sum+=P[N/2+j]; } } a.push_back(make_pair(sum,i)); } sort(a.begin(),a.end()); int n=N/2; for(int i=0;i<(1<<n);i++){ ll sum=0; for(int j=0;j<n;j++){ if(((i>>(n-1-j))&1)==0){ sum+=P[j]; } } int k=lower_bound(a.begin(),a.end(),make_pair(S-sum,0))-a.begin(); while(k<a.size()&&a[k].first==S-sum){ for(int j=0;j<n;j++){ if(((i>>(n-1-j))&1)==0){ cout<<j+1<<" "; } } for(int j=0;j<m;j++){ if(((a[k].second>>(m-1-j))&1)==0){ cout<<n+j+1<<" "; } } cout<<endl; k++; } } }