結果

問題 No.1701 half price
ユーザー ぷらぷら
提出日時 2021-10-08 21:55:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 843 bytes
コンパイル時間 1,949 ms
コンパイル使用メモリ 199,040 KB
実行使用メモリ 4,500 KB
最終ジャッジ日時 2023-09-30 09:56:37
合計ジャッジ時間 2,912 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    int N,W;
    cin >> N >> W;
    vector<int>a(N);
    for(int i = 0; i < N; i++) {
        cin >> a[i];
    }
    int ans = 0;
    for(int i = 0; i < (1 << N); i++) {
        int b = i;
        bool flag = false;
        for(int j = i; j >= 0; j--) {
            j &= b;
            long long cnt = 0;
            for(int k = 0; k < N; k++) {
                if(1 & (i >> k)) {
                    if(1 & (j >> k)) {
                        cnt += a[k]/2;
                    }
                    else {
                        cnt += a[k];
                    }
                }
            }
            if(cnt == W) {
                flag = true;
                break;
            }
        }
        if(flag) {
            ans++;
        }
    }
    cout << ans << endl;
}
0