結果

問題 No.15 カタログショッピング
ユーザー Mi_SawaMi_Sawa
提出日時 2015-04-06 04:10:25
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 51 ms / 5,000 ms
コード長 1,556 bytes
コンパイル時間 1,686 ms
コンパイル使用メモリ 179,556 KB
実行使用メモリ 14,112 KB
最終ジャッジ日時 2024-07-04 03:17:51
合計ジャッジ時間 2,515 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 47 ms
14,108 KB
testcase_06 AC 51 ms
14,112 KB
testcase_07 AC 50 ms
14,108 KB
testcase_08 AC 49 ms
14,088 KB
testcase_09 AC 47 ms
14,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define all(x) begin(x),end(x)
#define rall(x) (x).rbegin(),(x).rend()
#define REP(i,b,n) for(int i=(int)(b);i<(int)(n);++i)
#define rep(i,n) REP(i,0,n)
#define repsz(i,v) rep(i,(v).size())
#define aur auto&
#define bit(n) (1LL<<(n))
#define eb emplace_back
#define mt make_tuple
#define fst first
#define snd second
using namespace std;
typedef long long ll;
//#define int long long
template<class C>int size(const C &c){ return c.size(); }
template<class T>bool chmin(T&a,const T&b){if(a<=b)return false;a=b;return true;}
template<class T>bool chmax(T&a,const T&b){if(a>=b)return false;a=b;return true;}

bool solve(){
    int n, S;
    cin >> n >> S;
    vector<int> p(n); for(aur x : p) cin >> x;
    unordered_map<int, vector<int>> H, L;
    int h = n/2, l = n-h;
    rep(A, bit(h)){
        int s = 0;
        rep(i, h) if(A>>i&1) s += p[i];
        H[s].emplace_back(A);
    }
    rep(A, bit(l)){
        int s = 0;
        rep(i, l) if(A>>i&1) s += p[i+h];
        L[s].emplace_back(A<<h);
    }
    vector<vector<int>> res;
    for(aur x : H) for(aur a : x.snd) for(aur b : L[S - x.fst]){
        vector<int> v;
        rep(i, n) if((a|b)>>i&1) v.emplace_back(i+1);
        res.emplace_back(v);
    }
    sort(all(res));
    for(aur x : res) repsz(i, x) cout << x[i] << (i == x.size()-1 ? "\n" : " ");
    return true;
}
signed main(){
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);
    cout << std::fixed << std::setprecision(10);
    solve();
    return 0;
}
// vim:set foldmethod=marker commentstring=//%s:
0