結果

問題 No.2293 無向辺 2-SAT
ユーザー t98slidert98slider
提出日時 2023-03-24 23:11:41
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 83 ms / 4,000 ms
コード長 1,686 bytes
コンパイル時間 1,709 ms
コンパイル使用メモリ 173,536 KB
実行使用メモリ 6,784 KB
最終ジャッジ日時 2024-05-02 03:51:47
合計ジャッジ時間 11,502 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 4 ms
5,632 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 73 ms
6,784 KB
testcase_04 AC 83 ms
5,504 KB
testcase_05 AC 64 ms
5,376 KB
testcase_06 AC 62 ms
5,376 KB
testcase_07 AC 28 ms
5,632 KB
testcase_08 AC 63 ms
5,504 KB
testcase_09 AC 56 ms
5,632 KB
testcase_10 AC 54 ms
5,632 KB
testcase_11 AC 72 ms
5,632 KB
testcase_12 AC 68 ms
5,632 KB
testcase_13 AC 58 ms
5,376 KB
testcase_14 AC 55 ms
5,376 KB
testcase_15 AC 49 ms
5,376 KB
testcase_16 AC 72 ms
5,504 KB
testcase_17 AC 73 ms
5,632 KB
testcase_18 AC 65 ms
5,632 KB
testcase_19 AC 31 ms
5,376 KB
testcase_20 AC 73 ms
5,632 KB
testcase_21 AC 70 ms
5,632 KB
testcase_22 AC 69 ms
5,632 KB
testcase_23 AC 68 ms
5,504 KB
testcase_24 AC 71 ms
5,504 KB
testcase_25 AC 70 ms
5,504 KB
testcase_26 AC 71 ms
5,504 KB
testcase_27 AC 70 ms
5,632 KB
testcase_28 AC 68 ms
5,632 KB
testcase_29 AC 68 ms
5,632 KB
testcase_30 AC 72 ms
5,632 KB
testcase_31 AC 69 ms
5,632 KB
testcase_32 AC 64 ms
5,632 KB
testcase_33 AC 65 ms
5,632 KB
testcase_34 AC 63 ms
5,632 KB
testcase_35 AC 61 ms
5,632 KB
testcase_36 AC 63 ms
5,760 KB
testcase_37 AC 60 ms
5,632 KB
testcase_38 AC 62 ms
5,632 KB
testcase_39 AC 69 ms
5,632 KB
testcase_40 AC 74 ms
5,632 KB
testcase_41 AC 59 ms
5,632 KB
testcase_42 AC 64 ms
5,632 KB
testcase_43 AC 67 ms
5,632 KB
testcase_44 AC 66 ms
5,632 KB
testcase_45 AC 68 ms
5,504 KB
testcase_46 AC 69 ms
5,504 KB
testcase_47 AC 68 ms
5,504 KB
testcase_48 AC 70 ms
5,632 KB
testcase_49 AC 72 ms
5,504 KB
testcase_50 AC 67 ms
5,632 KB
testcase_51 AC 70 ms
5,632 KB
testcase_52 AC 67 ms
5,632 KB
testcase_53 AC 69 ms
5,632 KB
testcase_54 AC 71 ms
5,632 KB
testcase_55 AC 71 ms
5,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

struct Problem_E {
    int n, num_component;
    bool is_zero;
    stack<int> st;
    vector<int> weight, parent_or_size;
    Problem_E(int _n) : n(_n), num_component(_n), weight(n), parent_or_size(n, -1), is_zero(false) {}
    int leader(int v){
        if(parent_or_size[v] < 0) return v;
        int root = leader(parent_or_size[v]);
        weight[v] ^= weight[parent_or_size[v]];
        return parent_or_size[v] = root;
    }
    void merge(int u, int v, int w){
        int x = leader(u), y = leader(v);
        w ^= weight[u] ^ weight[v];
        if(x == y){
            if(w)is_zero = true;
            return;
        }
        if(-parent_or_size[x] < -parent_or_size[y]) swap(x, y);
        parent_or_size[x] += parent_or_size[y];
        parent_or_size[y] = x;
        weight[y] = w;
        num_component--;
        st.push(x), st.push(y);
    }
    void reset(){
        is_zero = false;
        num_component = n;
        while(!st.empty()){
            parent_or_size[st.top()] = -1;
            weight[st.top()] = 0;
            st.pop();
        }
    }
};

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int N, Q, cmd, u, v;;
    cin >> N >> Q;
    vector<int> pow2(N + 1);
    pow2[0] = 1;
    for(int i = 0; i < N; i++) {
        pow2[i + 1] = pow2[i] + pow2[i];
        if(pow2[i + 1] >= 998244353) pow2[i + 1] -= 998244353;
    }
    Problem_E uf(N);
    while(Q--){
        cin >> cmd;
        if(cmd <= 2){
            cin >> u >> v;
            uf.merge(--u, --v, --cmd);
        }else{
            uf.reset();
        }
        cout << (uf.is_zero ? 0 : pow2[uf.num_component]) << '\n';
    }
}
0