結果
問題 | No.15 カタログショッピング |
ユーザー | kroton |
提出日時 | 2014-10-31 09:24:54 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,583 bytes |
コンパイル時間 | 655 ms |
コンパイル使用メモリ | 76,476 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-09 18:16:21 |
合計ジャッジ時間 | 1,251 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
ソースコード
#include <iostream> #include <vector> #include <set> #include <queue> #include <sstream> #include <cstring> #include <cstdio> #include <algorithm> using namespace std; typedef long long ll; int N; int S; int P[50]; void gen(int s, int N, vector< pair<int,int> >& stock){ for(int m=0;m<1<<N;m++){ int sum = 0; for(int i=0;i<N;i++){ if((m >> i) & 1){ sum += P[s + i]; } } stock.push_back(make_pair(sum, m)); } } void solve(){ vector< pair<int, int> > Left; vector< pair<int, int> > Right; int L = N / 2, R = N - L; gen(0, L, Left); gen(L, R, Right); sort(Right.begin(), Right.end()); vector<int> RightVal(Right.size()); for(int i=0;i<Right.size();i++){ RightVal[i] = Right[i].first; } for(int i=0;i<Left.size();i++){ int lval = Left[i].first; int lmem = Left[i].second; auto ps = equal_range(RightVal.begin(), RightVal.end(), S - lval); int s = ps.first - RightVal.begin(); int t = ps.second - RightVal.begin(); for(int j=s;j<t;j++){ bool first = true; int rmem = Right[j].second; for(int k=0;k<L;k++){ if((lmem >> k) & 1){ if(first){ first = false; } else { cout << " "; } cout << (k + 1); } } for(int k=0;k<R;k++){ if((rmem >> k) & 1){ if(first){ first = false; } else { cout << " "; } cout << (L + k + 1); } } cout << endl; } } } int main(){ cin >> N >> S; for(int i=0;i<N;i++)cin >> P[i]; solve(); return 0; }