結果

問題 No.2293 無向辺 2-SAT
ユーザー hiro71687khiro71687k
提出日時 2023-05-10 18:01:37
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,109 bytes
コンパイル時間 5,199 ms
コンパイル使用メモリ 265,080 KB
実行使用メモリ 21,376 KB
最終ジャッジ日時 2024-05-05 04:50:52
合計ジャッジ時間 20,999 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 16 ms
15,680 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 521 ms
18,092 KB
testcase_04 AC 1,590 ms
17,960 KB
testcase_05 AC 972 ms
11,712 KB
testcase_06 AC 2,511 ms
11,704 KB
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll=long long;
using ld=long double;
ld pie=3.141592653589793;
ll inf=14449999999999999;
ll mod=998244353;
struct unionfind
{
    vector<ll>par,siz;
    unionfind(ll n): par(n,-1),siz(n,1){}
    ll root(ll x){
        if (par[x]==-1)
        {
            return x;
        }else{
            return par[x]=root(par[x]);
        }
    }
    bool issame(ll x,ll y){
        return root(x)==root(y);
    }
    bool unite(ll x,ll y){
        x=root(x);
        y=root(y);
        if (x==y)
        {
            return false;
        }
        if (siz[x]<siz[y])
        {
            swap(x,y);
        }
        par[y]=x;
        siz[x]+=siz[y];
        return true;
    }
    ll size(ll x){
        return siz[root(x)];
    }
};
int main(){
    ll n,q;
    cin >> n >> q;
    unionfind uf(n*2);
    ll ans=1;
    ll half=inv_mod(2,mod);
    ll x=1;
    for (ll i = 0; i < n; i++)
    {
        x*=2;
        x%=mod;
    }
    ans=x;
    unionfind uf2(n*2);
    vector<ll>a;
    for (ll i = 0; i < q; i++)
    {
        ll t;
        cin >> t;
        if (t==1)
        {
            ll u,v;
            cin >> u >> v;
            u--,v--;
            if (!uf.issame(u,v)||!uf.issame(u+n,v+n))
            {
                ans*=half;
                ans%=mod;
            }
            uf.unite(u,v);
            uf.unite(u+n,v+n);
            if (uf.issame(u,u+n)||uf.issame(v,v+n))
            {
                ans=0;
            }
        }else if (t==2)
        {
            ll u,v;
            cin >> u >> v;
            u--,v--;
            if (!uf.issame(u,v+n)||!uf.issame(u+n,v))
            {
                ans*=half;
                ans%=mod;
            }
            uf.unite(u,v+n);
            uf.unite(u+n,v);
            if (uf.issame(u,u+n)||uf.issame(v,v+n))
            {
                ans=0;
            }
        }else{
            uf=uf2;
            ans=x;
        }
        a.push_back(ans);
    }
    for (ll i = 0; i < a.size(); i++)
    {
        cout << a[i] << endl;
    }
}
0