結果
問題 | No.2293 無向辺 2-SAT |
ユーザー | Meet Brahmbhatt |
提出日時 | 2023-05-16 19:12:29 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,457 bytes |
コンパイル時間 | 2,177 ms |
コンパイル使用メモリ | 177,616 KB |
実行使用メモリ | 27,264 KB |
最終ジャッジ日時 | 2024-05-08 13:22:02 |
合計ジャッジ時間 | 19,578 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 9 ms
11,136 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | AC | 208 ms
11,236 KB |
testcase_05 | AC | 187 ms
7,424 KB |
testcase_06 | AC | 165 ms
7,168 KB |
testcase_07 | AC | 35 ms
11,008 KB |
testcase_08 | AC | 171 ms
11,136 KB |
testcase_09 | AC | 136 ms
11,008 KB |
testcase_10 | AC | 133 ms
11,008 KB |
testcase_11 | AC | 227 ms
11,264 KB |
testcase_12 | AC | 232 ms
11,136 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 215 ms
11,392 KB |
testcase_17 | AC | 288 ms
13,056 KB |
testcase_18 | AC | 181 ms
11,136 KB |
testcase_19 | AC | 90 ms
7,168 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
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 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | WA | - |
ソースコード
/** * - Meet Brahmbhatt * - Hard work always pays off **/ #include"bits/stdc++.h" using namespace std; #ifdef MeetBrahmbhatt #include "debug.h" #else #define dbg(...) 72 #endif #define endl "\n" #define int long long const long long INF = 4e18; class DSU { public : vector<int> parent; vector<int> size; set<int> USED; int comps; DSU(int n) : parent(n), size(n), comps(n) { for (int i = 0; i < n; i++) { parent[i] = i; size[i] = 1; } } int find(int a) { if (parent[a] == a) return a; return parent[a] = find(parent[a]); } bool join(int x, int y) { int a = find(x); int b = find(y); USED.insert(x); USED.insert(y); if (a != b) { if (size[a] < size[b]) swap(a, b); parent[b] = a; size[a] += size[b]; comps -= 1; return true; } return false; } void reset() { comps = (int) parent.size(); for (int i : USED) { parent[i] = i; size[i] = 1; } USED.clear(); } int Components() { return comps; } }; void solve() { int n, q; cin >> n >> q; constexpr int MOD = 998244353; vector<int> P(n + 1, 1); for (int i = 1; i <= n; i++) { P[i] = (P[i - 1] * 2) % MOD; } DSU D(2 * n); while (q--) { int t; cin >> t; if (t == 1) { int u, v; cin >> u >> v; --u; --v; D.join(u, v); D.join(u + n, v + n); if (D.find(u) == D.find(u + n) || D.find(v) == D.find(v + n)) { cout << 0 << endl; } else { cout << P[D.Components() / 2] << endl; } } else if (t == 2) { int u, v; cin >> u >> v; --u; --v; D.join(u, v + n); D.join(v, u + n); if (D.find(u) == D.find(u + n) || D.find(v) == D.find(v + n)) { cout << 0 << endl; } else { cout << P[D.Components() / 2] << endl; } } else { D.reset(); cout << P[D.Components() / 2] << endl; } } } signed main() { ios_base::sync_with_stdio(0); cin.tie(0); cout << fixed << setprecision(9); int tt = 1; // cin >> tt; while (tt--) solve(); return 0; }