結果

問題 No.1701 half price
ユーザー Taichi FujiiTaichi Fujii
提出日時 2021-10-08 22:53:06
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 2,092 ms / 3,000 ms
コード長 775 bytes
コンパイル時間 723 ms
コンパイル使用メモリ 74,916 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-30 12:04:13
合計ジャッジ時間 8,122 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 120 ms
4,376 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 121 ms
4,380 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 2,071 ms
4,380 KB
testcase_07 AC 2,019 ms
4,380 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 1 ms
4,376 KB
testcase_10 AC 1 ms
4,376 KB
testcase_11 AC 1 ms
4,380 KB
testcase_12 AC 1 ms
4,380 KB
testcase_13 AC 2 ms
4,380 KB
testcase_14 AC 1 ms
4,376 KB
testcase_15 AC 1 ms
4,376 KB
testcase_16 AC 1 ms
4,376 KB
testcase_17 AC 2 ms
4,376 KB
testcase_18 AC 1 ms
4,380 KB
testcase_19 AC 2 ms
4,380 KB
testcase_20 AC 1 ms
4,380 KB
testcase_21 AC 2,092 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 = 1; 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