結果
問題 | No.1701 half price |
ユーザー |
![]() |
提出日時 | 2024-04-13 13:17:57 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 84 ms / 3,000 ms |
コード長 | 905 bytes |
コンパイル時間 | 2,133 ms |
コンパイル使用メモリ | 193,832 KB |
最終ジャッジ日時 | 2025-02-21 00:59:41 |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 20 |
ソースコード
#include <bits/stdc++.h>using namespace std;void fast_io() {ios_base::sync_with_stdio(false);cin.tie(nullptr);}int main() {fast_io();int n;long long w;cin >> n >> w;vector<long long> a(n);for (int i = 0; i < n; i++) {cin >> a[i];}int ans = 0;for (int st = 1; st < (1 << n); st++) {long long tmp = 0;for (int i = 0; i < n; i++) {if (st & (1 << i)) {tmp += a[i];}}for (int sub = st;; sub = (sub - 1) & st) {long long dis = 0;for (int i = 0; i < n; i++) {if (sub & (1 << i)) {dis += a[i] / 2;}}if (tmp - dis == w) {ans++;break;}if (sub == 0) break;}}cout << ans << endl;}