結果

問題 No.1701 half price
ユーザー tabae326tabae326
提出日時 2021-10-08 22:00:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,351 bytes
コンパイル時間 2,172 ms
コンパイル使用メモリ 200,064 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-30 10:07:23
合計ジャッジ時間 7,995 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 97 ms
4,380 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 91 ms
4,376 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 1,481 ms
4,376 KB
testcase_07 AC 1,421 ms
4,376 KB
testcase_08 WA -
testcase_09 AC 1 ms
4,376 KB
testcase_10 AC 1 ms
4,380 KB
testcase_11 AC 1 ms
4,376 KB
testcase_12 AC 1 ms
4,376 KB
testcase_13 AC 1 ms
4,376 KB
testcase_14 AC 1 ms
4,380 KB
testcase_15 AC 1 ms
4,380 KB
testcase_16 AC 2 ms
4,380 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 2 ms
4,376 KB
testcase_21 AC 1,471 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, srt, end) for (long long i = (srt); i < (long long)(end); i++)
// Ref: https://qiita.com/ysuzuki19/items/d89057d65284ba1a16ac
#define dump(var)  do{std::cerr << #var << " : ";view(var);}while(0)
template<typename T> void view(T e){std::cerr << e << "\n";}
template<typename T> void view(const std::vector<T>& v){for(const auto& e : v){ std::cerr << e << " "; } std::cerr << "\n";}
template<typename T> void view(const std::vector<std::vector<T> >& vv){ std::cerr << "\n"; for(const auto& v : vv){ view(v); } }
template<typename T> void dump_cout(const T& v) { for(long long i = 0; i < v.size(); i++) std::cout << v[i] << (i == v.size()-1 ? "\n" : " "); }

void solve() {
    ll n, w;
    cin >> n >> w;
    vector<ll> a(2*n);
    rep(i, 0, n) cin >> a[i];  
    ll ans = 0;
    rep(bit1, 0, 1<<n) {
        bool ok = false;
        rep(bit2, 0, 1<<n) {
            ll s2 = 0;
            rep(i, 0, n) if(bit1 & (1<<i)) {
                if(bit2 & (1<<i)) s2 += a[i] / 2;
                else s2 += a[i];
            }
            if(s2 == w) {
                ok = true;
                break;
            }
        }
        ans += ok;
    }
    cout << ans << endl;
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    solve();
    return 0;
}
0