結果

問題 No.2293 無向辺 2-SAT
ユーザー t98slidert98slider
提出日時 2023-02-15 14:24:06
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 104 ms / 4,000 ms
コード長 1,759 bytes
コンパイル時間 4,109 ms
コンパイル使用メモリ 233,536 KB
実行使用メモリ 8,192 KB
最終ジャッジ日時 2024-05-02 03:36:37
合計ジャッジ時間 18,333 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 5 ms
5,632 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 104 ms
8,192 KB
testcase_04 AC 94 ms
5,632 KB
testcase_05 AC 74 ms
5,376 KB
testcase_06 AC 74 ms
5,376 KB
testcase_07 AC 29 ms
5,632 KB
testcase_08 AC 78 ms
5,632 KB
testcase_09 AC 69 ms
5,632 KB
testcase_10 AC 67 ms
5,632 KB
testcase_11 AC 85 ms
5,632 KB
testcase_12 AC 84 ms
5,632 KB
testcase_13 AC 66 ms
5,376 KB
testcase_14 AC 62 ms
5,376 KB
testcase_15 AC 63 ms
5,376 KB
testcase_16 AC 102 ms
5,632 KB
testcase_17 AC 85 ms
5,760 KB
testcase_18 AC 87 ms
5,632 KB
testcase_19 AC 60 ms
5,376 KB
testcase_20 AC 93 ms
5,632 KB
testcase_21 AC 85 ms
5,632 KB
testcase_22 AC 90 ms
5,632 KB
testcase_23 AC 89 ms
5,632 KB
testcase_24 AC 94 ms
5,760 KB
testcase_25 AC 86 ms
5,632 KB
testcase_26 AC 87 ms
5,632 KB
testcase_27 AC 89 ms
5,632 KB
testcase_28 AC 88 ms
5,632 KB
testcase_29 AC 89 ms
5,632 KB
testcase_30 AC 91 ms
5,632 KB
testcase_31 AC 88 ms
5,632 KB
testcase_32 AC 81 ms
5,632 KB
testcase_33 AC 82 ms
5,632 KB
testcase_34 AC 82 ms
5,632 KB
testcase_35 AC 81 ms
5,632 KB
testcase_36 AC 81 ms
5,632 KB
testcase_37 AC 81 ms
5,632 KB
testcase_38 AC 77 ms
5,632 KB
testcase_39 AC 77 ms
5,760 KB
testcase_40 AC 78 ms
5,632 KB
testcase_41 AC 68 ms
5,632 KB
testcase_42 AC 73 ms
5,632 KB
testcase_43 AC 76 ms
5,632 KB
testcase_44 AC 81 ms
5,632 KB
testcase_45 AC 81 ms
5,632 KB
testcase_46 AC 81 ms
5,632 KB
testcase_47 AC 82 ms
5,632 KB
testcase_48 AC 82 ms
5,632 KB
testcase_49 AC 81 ms
5,632 KB
testcase_50 AC 83 ms
5,632 KB
testcase_51 AC 83 ms
5,632 KB
testcase_52 AC 81 ms
5,632 KB
testcase_53 AC 83 ms
5,632 KB
testcase_54 AC 83 ms
5,760 KB
testcase_55 AC 81 ms
5,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using mint = atcoder::modint998244353;

struct Problem_E{
    int num_component, _n;
    vector<int> parent_or_size;
    stack<int> stk;

    Problem_E(int N) : _n(N), num_component(N), parent_or_size(N, -1) {}

    int leader(int v){
        if(parent_or_size[v] < 0) return v;
        return parent_or_size[v] = leader(parent_or_size[v]);
    }

    bool same(int u, int v) { return leader(u) == leader(v); }

    void merge(int u, int v){
        int x = leader(u), y = leader(v);
        if(x == y) return;
        if(-parent_or_size[x] < parent_or_size[y]) swap(x, y);
        stk.push(x), stk.push(y);
        parent_or_size[x] += parent_or_size[y];
        parent_or_size[y] = x;
        num_component--;
    }

    void reset(){
        num_component = _n;
        while(!stk.empty()) {
            parent_or_size[stk.top()] = -1;
            stk.pop();
        }
    }
};

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);

    int N, Q;
    cin >> N >> Q;

    vector<mint> pow2(N + 1);
    pow2[0] = 1;
    for(int i = 0; i < N; i++) pow2[i + 1] = pow2[i] + pow2[i];

    Problem_E uf(2 * N);

    bool is_zero = false;
    int type, u, v;
    while(Q--){
        cin >> type;
        if(type <= 2){
            cin >> u >> v;
            u--, v--;
            if(type == 1) {
                uf.merge(u, v);
                uf.merge(u + N, v + N);
            } else {
                uf.merge(u, v + N);
                uf.merge(u + N, v);
            }
            if(uf.same(u, u + N)) is_zero = true;
        } else {
            is_zero = false;
            uf.reset();
        }
        cout << (is_zero ? 0 : pow2[uf.num_component >> 1].val()) << '\n';
    }
}
0