結果
問題 | No.2152 [Cherry Anniversary 2] 19 Petals of Cherry |
ユーザー | trineutron |
提出日時 | 2022-12-09 08:43:11 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,097 bytes |
コンパイル時間 | 2,639 ms |
コンパイル使用メモリ | 249,076 KB |
実行使用メモリ | 7,424 KB |
最終ジャッジ日時 | 2024-10-14 18:34:11 |
合計ジャッジ時間 | 10,561 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 115 ms
7,296 KB |
testcase_01 | AC | 124 ms
7,296 KB |
testcase_02 | AC | 120 ms
7,296 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 143 ms
7,296 KB |
testcase_07 | AC | 149 ms
7,296 KB |
testcase_08 | AC | 143 ms
7,296 KB |
testcase_09 | AC | 136 ms
7,168 KB |
testcase_10 | WA | - |
testcase_11 | AC | 139 ms
7,296 KB |
testcase_12 | AC | 141 ms
7,296 KB |
testcase_13 | AC | 136 ms
7,296 KB |
testcase_14 | AC | 147 ms
7,168 KB |
testcase_15 | WA | - |
testcase_16 | AC | 135 ms
7,168 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 128 ms
7,288 KB |
testcase_21 | AC | 128 ms
7,296 KB |
testcase_22 | AC | 139 ms
7,296 KB |
testcase_23 | AC | 131 ms
7,372 KB |
testcase_24 | WA | - |
testcase_25 | AC | 141 ms
7,348 KB |
testcase_26 | WA | - |
testcase_27 | AC | 125 ms
7,296 KB |
testcase_28 | AC | 118 ms
7,316 KB |
testcase_29 | AC | 119 ms
7,296 KB |
testcase_30 | AC | 120 ms
7,296 KB |
testcase_31 | AC | 122 ms
7,276 KB |
testcase_32 | AC | 129 ms
7,168 KB |
testcase_33 | AC | 124 ms
7,312 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | AC | 114 ms
7,296 KB |
testcase_48 | AC | 146 ms
7,276 KB |
ソースコード
#include <bits/stdc++.h> #include <atcoder/modint> using namespace std; using namespace atcoder; using mint = modint998244353; constexpr int mask = (1 << 19) - 1; constexpr int top = 1 << 19; int main() { vector<int> a(19); for (int i = 0; i < 19; i++) { int l; cin >> l; for (int j = 0; j < l; j++) { int x; cin >> x; x--; a.at(i) ^= 1 << x; } } vector<mint> ans(1 << 20); ans.at(0) = 1; for (int i = 0; i < 19; i++) { for (int j = 0; j < 1 << 20; j++) { if (__builtin_popcount(j & mask) != i) continue; for (int k = 0; k < 19; k++) { if ((a.at(i) >> k & 1) and not(j >> k & 1)) { bool flip = __builtin_popcount(j & mask & ~((1 << k) - 1)) % 2 == 1; int t = flip ? top : 0; ans.at(j ^ (1 << k) ^ t) += ans.at(j); } } } } cout << ans.at(mask).val() << ' ' << ans.at(mask ^ top).val() << endl; return 0; }