結果
問題 | No.2672 Subset Xor Sum |
ユーザー | Soni |
提出日時 | 2024-03-15 23:31:00 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 900 bytes |
コンパイル時間 | 1,303 ms |
コンパイル使用メモリ | 100,360 KB |
実行使用メモリ | 13,640 KB |
最終ジャッジ日時 | 2024-09-30 03:05:18 |
合計ジャッジ時間 | 6,898 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
12,192 KB |
testcase_01 | WA | - |
testcase_02 | AC | 5 ms
5,248 KB |
testcase_03 | AC | 3 ms
5,248 KB |
testcase_04 | AC | 3 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 3 ms
5,248 KB |
testcase_13 | AC | 3 ms
5,248 KB |
testcase_14 | AC | 3 ms
5,248 KB |
testcase_15 | AC | 3 ms
5,248 KB |
testcase_16 | AC | 3 ms
5,248 KB |
testcase_17 | AC | 3 ms
5,248 KB |
testcase_18 | AC | 3 ms
5,248 KB |
testcase_19 | AC | 3 ms
5,248 KB |
testcase_20 | AC | 3 ms
5,248 KB |
testcase_21 | AC | 3 ms
5,248 KB |
testcase_22 | AC | 2 ms
5,248 KB |
testcase_23 | AC | 2 ms
5,248 KB |
testcase_24 | AC | 3 ms
5,248 KB |
testcase_25 | AC | 3 ms
5,248 KB |
testcase_26 | AC | 13 ms
5,248 KB |
testcase_27 | AC | 11 ms
6,176 KB |
testcase_28 | AC | 6 ms
5,248 KB |
testcase_29 | AC | 5 ms
5,248 KB |
testcase_30 | WA | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | TLE | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
testcase_55 | -- | - |
testcase_56 | -- | - |
testcase_57 | -- | - |
testcase_58 | -- | - |
testcase_59 | -- | - |
testcase_60 | -- | - |
testcase_61 | -- | - |
testcase_62 | -- | - |
testcase_63 | -- | - |
testcase_64 | -- | - |
testcase_65 | -- | - |
testcase_66 | -- | - |
testcase_67 | -- | - |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <unordered_map> using namespace std; int I() { int x; cin >> x; return x; } vector<int> LI() { int n = I(); vector<int> vec(n); for (int i = 0; i < n; ++i) { cin >> vec[i]; } return vec; } int main() { int n = I(); vector<int> a = LI(); unordered_map<int, int> a_cnt; for (int i = 0; i < n; ++i) { a_cnt[a[i]]++; } unordered_map<int, long long> dp; dp[0] = 1; for (auto &[num, count] : a_cnt) { unordered_map<int, long long> ndp; int mul = 1 << (count - 1); for (auto &[val, cnt] : dp) { ndp[val] += cnt * mul; ndp[val ^ num] += cnt * mul; } dp = ndp; } if (dp[0] == 2) { cout << "No" << endl; } else { cout << "Yes" << endl; } return 0; }