結果

問題 No.2293 無向辺 2-SAT
ユーザー hiro71687khiro71687k
提出日時 2023-05-10 18:01:37
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 2,109 bytes
コンパイル時間 4,493 ms
コンパイル使用メモリ 264,980 KB
実行使用メモリ 35,160 KB
最終ジャッジ日時 2024-11-26 22:45:57
合計ジャッジ時間 139,346 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,764 KB
testcase_01 AC 15 ms
21,248 KB
testcase_02 AC 2 ms
22,316 KB
testcase_03 AC 406 ms
23,472 KB
testcase_04 AC 1,497 ms
25,040 KB
testcase_05 AC 880 ms
28,028 KB
testcase_06 AC 2,636 ms
17,216 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 921 ms
23,468 KB
testcase_12 TLE -
testcase_13 AC 414 ms
13,764 KB
testcase_14 AC 331 ms
22,796 KB
testcase_15 AC 352 ms
10,960 KB
testcase_16 AC 1,164 ms
23,464 KB
testcase_17 AC 445 ms
25,040 KB
testcase_18 AC 2,836 ms
25,040 KB
testcase_19 AC 729 ms
16,188 KB
testcase_20 AC 690 ms
23,432 KB
testcase_21 AC 2,428 ms
35,160 KB
testcase_22 AC 478 ms
23,472 KB
testcase_23 AC 486 ms
35,036 KB
testcase_24 AC 438 ms
23,468 KB
testcase_25 AC 488 ms
25,040 KB
testcase_26 AC 430 ms
34,548 KB
testcase_27 AC 464 ms
23,472 KB
testcase_28 AC 468 ms
23,468 KB
testcase_29 AC 500 ms
35,156 KB
testcase_30 AC 471 ms
23,472 KB
testcase_31 AC 491 ms
35,032 KB
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 AC 3,259 ms
18,092 KB
testcase_47 AC 2,011 ms
18,088 KB
testcase_48 AC 1,307 ms
18,008 KB
testcase_49 AC 883 ms
18,008 KB
testcase_50 AC 660 ms
18,092 KB
testcase_51 AC 534 ms
18,096 KB
testcase_52 AC 472 ms
18,092 KB
testcase_53 AC 447 ms
17,964 KB
testcase_54 AC 438 ms
18,092 KB
testcase_55 AC 409 ms
24,904 KB
権限があれば一括ダウンロードができます

ソースコード

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