結果
問題 | No.2293 無向辺 2-SAT |
ユーザー | T101010101 |
提出日時 | 2023-05-06 11:12:55 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 147 ms / 4,000 ms |
コード長 | 10,570 bytes |
コンパイル時間 | 4,477 ms |
コンパイル使用メモリ | 274,280 KB |
実行使用メモリ | 21,980 KB |
最終ジャッジ日時 | 2024-05-03 00:39:34 |
合計ジャッジ時間 | 16,053 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 5 ms
9,472 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 112 ms
21,980 KB |
testcase_04 | AC | 113 ms
9,532 KB |
testcase_05 | AC | 105 ms
6,528 KB |
testcase_06 | AC | 96 ms
6,528 KB |
testcase_07 | AC | 58 ms
9,472 KB |
testcase_08 | AC | 111 ms
9,472 KB |
testcase_09 | AC | 94 ms
9,344 KB |
testcase_10 | AC | 93 ms
9,472 KB |
testcase_11 | AC | 114 ms
9,600 KB |
testcase_12 | AC | 119 ms
9,344 KB |
testcase_13 | AC | 81 ms
5,376 KB |
testcase_14 | AC | 65 ms
5,376 KB |
testcase_15 | AC | 62 ms
5,376 KB |
testcase_16 | AC | 112 ms
9,600 KB |
testcase_17 | AC | 113 ms
10,236 KB |
testcase_18 | AC | 112 ms
9,600 KB |
testcase_19 | AC | 51 ms
6,400 KB |
testcase_20 | AC | 114 ms
9,544 KB |
testcase_21 | AC | 111 ms
9,472 KB |
testcase_22 | AC | 123 ms
9,984 KB |
testcase_23 | AC | 116 ms
9,856 KB |
testcase_24 | AC | 147 ms
9,960 KB |
testcase_25 | AC | 115 ms
9,836 KB |
testcase_26 | AC | 135 ms
9,984 KB |
testcase_27 | AC | 122 ms
9,996 KB |
testcase_28 | AC | 116 ms
9,856 KB |
testcase_29 | AC | 119 ms
9,984 KB |
testcase_30 | AC | 121 ms
9,972 KB |
testcase_31 | AC | 128 ms
9,984 KB |
testcase_32 | AC | 100 ms
9,472 KB |
testcase_33 | AC | 102 ms
9,436 KB |
testcase_34 | AC | 103 ms
9,344 KB |
testcase_35 | AC | 106 ms
9,472 KB |
testcase_36 | AC | 102 ms
9,556 KB |
testcase_37 | AC | 97 ms
9,472 KB |
testcase_38 | AC | 102 ms
9,472 KB |
testcase_39 | AC | 95 ms
9,468 KB |
testcase_40 | AC | 97 ms
9,472 KB |
testcase_41 | AC | 80 ms
9,472 KB |
testcase_42 | AC | 94 ms
9,436 KB |
testcase_43 | AC | 96 ms
9,472 KB |
testcase_44 | AC | 101 ms
9,472 KB |
testcase_45 | AC | 104 ms
9,472 KB |
testcase_46 | AC | 105 ms
9,472 KB |
testcase_47 | AC | 108 ms
9,472 KB |
testcase_48 | AC | 110 ms
9,496 KB |
testcase_49 | AC | 111 ms
9,600 KB |
testcase_50 | AC | 112 ms
9,472 KB |
testcase_51 | AC | 112 ms
9,600 KB |
testcase_52 | AC | 111 ms
9,628 KB |
testcase_53 | AC | 115 ms
9,892 KB |
testcase_54 | AC | 121 ms
10,356 KB |
testcase_55 | AC | 118 ms
11,096 KB |
ソースコード
#pragma region Macros // #pragma GCC target("avx,avx2,fma") // #pragma GCC optimize("O3,unroll-loops") #include <bits/extc++.h> // #include <atcoder/all> // using namespace atcoder; using namespace std; using namespace __gnu_pbds; // #include <boost/multiprecision/cpp_dec_float.hpp> // #include <boost/multiprecision/cpp_int.hpp> // namespace mp = boost::multiprecision; // using Bint = mp::cpp_int; // using Bdouble = mp::number<mp::cpp_dec_float<128>>; #define TO_STRING(var) # var #define pb emplace_back #define int ll #define endl '\n' #define sqrt __builtin_sqrt using ll = long long; using ld = long double; const ld PI = acos(-1); const ld EPS = 1e-10; const int INF = 1 << 30; const ll INFL = 1LL << 61; const int MOD = 998244353; // const int MOD = 1000000007; __attribute__((constructor)) void constructor() { ios::sync_with_stdio(false); cin.tie(nullptr); // ifstream in("input.txt"); // cin.rdbuf(in.rdbuf()); cout << fixed << setprecision(12); } // class UnionFind { // public: // UnionFind() = default; // UnionFind(int N) : par(N), sz(N, 1) { // iota(par.begin(), par.end(), 0); // } // int root(int x) { // if (par[x] == x) return x; // return (par[x] = root(par[x])); // } // bool unite(int x, int y) { // int rx = root(x); // int ry = root(y); // if (rx == ry) return false; // if (sz[rx] < sz[ry]) swap(rx, ry); // sz[rx] += sz[ry]; // par[ry] = rx; // return true; // } // bool issame(int x, int y) { return (root(x) == root(y)); } // int size(int x) { return sz[root(x)]; } // vector<vector<int>> groups(int N) { // vector<vector<int>> G(N); // for (int x = 0; x < N; x++) { // G[root(x)].push_back(x); // } // G.erase( // remove_if(G.begin(), G.end(), // [&](const vector<int>& V) { return V.empty(); }), // G.end()); // return G; // } // private: // vector<int> par; // vector<int> sz; // }; template<int mod> class Modint{ public: int val = 0; Modint(int x = 0) { while (x < 0) x += mod; val = x % mod; } Modint(const Modint &r) { val = r.val; } Modint operator -() { return Modint(-val); } Modint operator +(const Modint &r) { return Modint(*this) += r; } Modint operator +(const int &q) { Modint r(q); return Modint(*this) += r; } Modint operator -(const Modint &r) { return Modint(*this) -= r; } Modint operator -(const int &q) { Modint r(q); return Modint(*this) -= r; } Modint operator *(const Modint &r) { return Modint(*this) *= r; } Modint operator *(const int &q) { Modint r(q); return Modint(*this) *= r; } Modint operator /(const Modint &r) { return Modint(*this) /= r; } Modint operator /(const int &q) { Modint r(q); return Modint(*this) /= r; } Modint& operator ++() { val = (val + 1) % mod; return *this; } Modint& operator --() { val = (val - 1 + mod) % mod; return *this; } Modint &operator +=(const Modint &r) { val += r.val; if (val >= mod) val -= mod; return *this; } Modint &operator +=(const int &q) { Modint r(q); val += r.val; if (val >= mod) val -= mod; return *this; } Modint &operator -=(const Modint &r) { if (val < r.val) val += mod; val -= r.val; return *this; } Modint &operator -=(const int &q) { Modint r(q); if (val < r.val) val += mod; val -= r.val; return *this; } Modint &operator *=(const Modint &r) { val = val * r.val % mod; return *this; } Modint &operator *=(const int &q) { Modint r(q); val = val * r.val % mod; return *this; } Modint &operator /=(const Modint &r) { int a = r.val, b = mod, u = 1, v = 0; while (b) {int t = a / b; a -= t * b; swap(a, b); u -= t * v; swap(u, v);} val = val * u % mod; if (val < 0) val += mod; return *this; } Modint &operator /=(const int &q) { Modint r(q); int a = r.val, b = mod, u = 1, v = 0; while (b) {int t = a / b; a -= t * b; swap(a, b); u -= t * v; swap(u, v);} val = val * u % mod; if (val < 0) val += mod; return *this; } bool operator ==(const Modint& r) { return this -> val == r.val; } bool operator <(const Modint& r) { return this -> val < r.val; } bool operator !=(const Modint& r) { return this -> val != r.val; } }; using mint = Modint<MOD>; // using mint = modint<MOD>; istream &operator >>(istream &is, mint& x) { int t; is >> t; x = t; return (is); } ostream &operator <<(ostream &os, const mint& x) { return os << x.val; } mint modpow(const mint &x, int n) { if (n == 0) return 1; mint t = modpow(x, n / 2); t = t * t; if (n & 1) t = t * x; return t; } int modpow(__int128_t x, int n, int mod) { __int128_t ret = 1; while (n > 0) { if (n % 2 == 1) ret = ret * x % mod; x = x * x % mod; n /= 2; } return ret; } int POW(int x, int n) { __int128_t ret = 1; if (n < 0) { cout << "error" << endl; return 0; } else if (x == 1 or n == 0) ret = 1; else if (x == -1 && n % 2 == 0) ret = 1; else if (x == -1) ret = -1; else if (n % 2 == 0) ret = POW(x * x, n / 2); else ret = x * POW(x, n - 1); if (ret > 8e18) ret = 0; // llに収まらない範囲は0埋め return ret; } int floor(int x, int y) { return (x > 0 ? x / y : (x - y + 1) / y); } int ceil(int x, int y) { return (x > 0 ? (x + y - 1) / y : x / y); } int per(int x, int y) { if (y == 0) { cout << "error" << endl; return INFL; } if (x >= 0 && y > 0) return x / y; if (x >= 0 && y < 0) return x / y - (x % y < 0); if (x < 0 && y < 0) return x / y + (x % y < 0); // if (x < 0 && y > 0) return x / y - (x % y < 0); } int mod(int x, int y) { if (y == 0) { cout << "error" << endl; return INFL; } if (x >= 0 && y > 0) return x % y; if (x >= 0 && y < 0) return x % y; if (x < 0 && y < 0) { __int128_t ret = x % y; ret += (__int128_t)abs(y) * INFL; ret %= abs(y); return ret; } // if (x < 0 && y > 0) { __int128_t ret = x % y; ret += (__int128_t)abs(y) * INFL; ret %= abs(y); return ret; // } } template <class T> bool chmax(T &a, const T& b) { if (a < b) { a = b; return true; } return false; } template <class T> bool chmin(T &a, const T& b) { if (a > b) { a = b; return true; } return false; } int countl_zero(int N) { return __builtin_clzll(N); } int countl_one(int N) { int ret = 0; while (N % 2) { N /= 2; ret++; } return ret; } int countr_zero(int N) { return __builtin_ctzll(N); } int countr_one(int N) { int ret = 0, k = 63 - __builtin_clzll(N); while (k != -1 && (N & (1LL << k))) { k--; ret++; } return ret; } int popcount(int N) { return __builtin_popcountll(N); } int unpopcount(int N) { return 64 - __builtin_clzll(N) - __builtin_popcountll(N); } int top_bit(int N) { return 63 - __builtin_clzll(N);} // 2^kの位 int bot_bit(int N) { return __builtin_ctz(N);} // 2^kの位 int MSB(int N) { return 1 << (63 - __builtin_clzll(N)); } // mask int LSB(int N) { return (N & -N); } // mask int bit_width(int N) { return 64 - __builtin_clzll(N); } // 桁数 int ceil_log2(int N) { return 63 - __builtin_clzll(N); } int bit_floor(int N) { return 1 << (63 - __builtin_clzll(N)); } int floor_log2(int N) { return 64 - __builtin_clzll(N-1); } int bit_ceil(int N) { return 1 << (64 - __builtin_clzll(N-1)) - (N==1); } vector<mint> fac, finv, Inv; void COMinit(int N) { fac.resize(N + 1); finv.resize(N + 1); Inv.resize(N + 1); fac[0] = fac[1] = 1; finv[0] = finv[1] = 1; Inv[1] = 1; for (int i = 2; i <= N; i++) { fac[i] = fac[i-1] * mint(i); Inv[i] = -Inv[MOD % i] * mint(MOD / i); finv[i] = finv[i - 1] * Inv[i]; } } mint COM(int N, int K) { if (N < K) return 0; if (N < 0 || K < 0) return 0; return fac[N] * finv[K] * finv[N - K]; } struct Edge { int from, to; int cost; Edge(int to, int cost) : from(-1), to(to), cost(cost) {} Edge(int from, int to, int cost) : from(from), to(to), cost(cost) {} Edge &operator=(const int &x) { to = x; return *this; } operator int() const { return to; } }; #pragma endregion class UnionFind { public: vector<pair<int, pair<int, int>>> history; UnionFind() = default; UnionFind(int N) : par(N), sz(N, 1) { iota(par.begin(), par.end(), 0); } int root(int x) { if (par[x] == x) return x; return root(par[x]); // 経路圧縮しない } bool unite(int x, int y) { int rx = root(x); int ry = root(y); if (sz[rx] < sz[ry]) swap(rx, ry); history.pb(ry, make_pair(par[ry], sz[rx])); return rx != ry ? par[ry] = rx, sz[rx] += sz[ry], true : false; } void undo() { sz[par[history.back().first]] = history.back().second.second; par[history.back().first] = history.back().second.first; history.pop_back(); } void reset() { while (history.size()) undo(); } bool issame(int x, int y) { return (root(x) == root(y)); } int size(int x) { return sz[root(x)]; } vector<vector<int>> groups(int N) { vector<vector<int>> G(N); for (int x = 0; x < N; x++) { G[root(x)].push_back(x); } G.erase( remove_if(G.begin(), G.end(), [&](const vector<int>& V) { return V.empty(); }), G.end()); return G; } private: vector<int> par; vector<int> sz; }; signed main() { int N, Q; cin >> N >> Q; int K = 2 * N; // 連結成分数 UnionFind uf(N * 2); // 0~N-1:白 N~2N-1:黒 bool ok = true; for (int q = 0; q < Q; q++) { int t; cin >> t; if (t == 1) { int u, v; cin >> u >> v; u--; v--; K -= uf.unite(u, v); K -= uf.unite(N + u, N + v); if (uf.issame(u, N + u) or uf.issame(v, N + v)) ok = false; } else if (t == 2) { int u, v; cin >> u >> v; u--; v--; K -= uf.unite(u, N + v); K -= uf.unite(v, N + u); if (uf.issame(u, N + u) or uf.issame(v, N + v)) ok = false; } else { uf.reset(); K = 2 * N; ok = true; } if (!ok) cout << 0 << endl; else cout << modpow(2, K / 2) << endl; } }