結果

問題 No.1701 half price
ユーザー Taichi FujiiTaichi Fujii
提出日時 2021-10-08 22:50:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 775 bytes
コンパイル時間 597 ms
コンパイル使用メモリ 74,560 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-30 12:00:06
合計ジャッジ時間 7,940 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;
typedef long long ll;


int main(void){
    ll N, W;
    cin >> N >> W;

    vector<ll> A(N);
    for(int i = 0; i < N; i++){
        cin >> A[i];
    }

    ll ans = 0;
        
    for(int p = 0; p < (1 << N); p++){
        for(int p2 = 0; p2 < (1 << N); p2++){
            ll s = 0;
            for(int i = 0; i < N; i++){
                int idx = (p >> i) & 1;
                int idx2 = (p2 >> i) & 1;
                
                if (idx & idx2){
                    s += A[i] / 2;
                }else if (idx){
                    s += A[i];
                }
            }
            if (s == W){
                ans++;
                break;
            }
        }
    }
    cout << ans << endl;
}
0