結果
問題 | No.2293 無向辺 2-SAT |
ユーザー | hiro71687k |
提出日時 | 2023-05-10 18:08:18 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 496 ms / 4,000 ms |
コード長 | 2,495 bytes |
コンパイル時間 | 4,575 ms |
コンパイル使用メモリ | 265,164 KB |
実行使用メモリ | 27,192 KB |
最終ジャッジ日時 | 2024-11-26 22:49:59 |
合計ジャッジ時間 | 34,370 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 12 ms
15,708 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 496 ms
27,192 KB |
testcase_04 | AC | 459 ms
18,100 KB |
testcase_05 | AC | 436 ms
11,876 KB |
testcase_06 | AC | 426 ms
11,848 KB |
testcase_07 | AC | 301 ms
18,088 KB |
testcase_08 | AC | 442 ms
17,964 KB |
testcase_09 | AC | 407 ms
17,972 KB |
testcase_10 | AC | 411 ms
18,096 KB |
testcase_11 | AC | 455 ms
18,136 KB |
testcase_12 | AC | 444 ms
17,972 KB |
testcase_13 | AC | 392 ms
6,816 KB |
testcase_14 | AC | 370 ms
6,816 KB |
testcase_15 | AC | 367 ms
6,820 KB |
testcase_16 | AC | 449 ms
17,992 KB |
testcase_17 | AC | 458 ms
18,228 KB |
testcase_18 | AC | 453 ms
17,952 KB |
testcase_19 | AC | 217 ms
10,700 KB |
testcase_20 | AC | 453 ms
18,132 KB |
testcase_21 | AC | 439 ms
18,096 KB |
testcase_22 | AC | 458 ms
18,148 KB |
testcase_23 | AC | 454 ms
18,116 KB |
testcase_24 | AC | 457 ms
18,152 KB |
testcase_25 | AC | 456 ms
18,140 KB |
testcase_26 | AC | 456 ms
18,272 KB |
testcase_27 | AC | 459 ms
18,144 KB |
testcase_28 | AC | 462 ms
18,268 KB |
testcase_29 | AC | 458 ms
18,136 KB |
testcase_30 | AC | 457 ms
18,272 KB |
testcase_31 | AC | 450 ms
18,084 KB |
testcase_32 | AC | 436 ms
17,968 KB |
testcase_33 | AC | 436 ms
17,968 KB |
testcase_34 | AC | 438 ms
18,096 KB |
testcase_35 | AC | 438 ms
17,864 KB |
testcase_36 | AC | 435 ms
18,100 KB |
testcase_37 | AC | 432 ms
17,964 KB |
testcase_38 | AC | 439 ms
17,968 KB |
testcase_39 | AC | 435 ms
17,968 KB |
testcase_40 | AC | 437 ms
18,096 KB |
testcase_41 | AC | 416 ms
17,968 KB |
testcase_42 | AC | 420 ms
18,096 KB |
testcase_43 | AC | 434 ms
17,968 KB |
testcase_44 | AC | 440 ms
18,096 KB |
testcase_45 | AC | 443 ms
17,964 KB |
testcase_46 | AC | 450 ms
17,968 KB |
testcase_47 | AC | 441 ms
17,968 KB |
testcase_48 | AC | 449 ms
17,972 KB |
testcase_49 | AC | 451 ms
18,112 KB |
testcase_50 | AC | 455 ms
17,996 KB |
testcase_51 | AC | 460 ms
18,084 KB |
testcase_52 | AC | 463 ms
18,044 KB |
testcase_53 | AC | 460 ms
18,104 KB |
testcase_54 | AC | 467 ms
18,364 KB |
testcase_55 | AC | 462 ms
18,616 KB |
ソースコード
#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; vector<ll>b; for (ll i = 0; i < q; i++) { ll t; cin >> t; if (t==1) { ll u,v; cin >> u >> v; u--,v--; b.push_back(u); b.push_back(v); b.push_back(u+n); b.push_back(v+n); 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--; b.push_back(u); b.push_back(v); b.push_back(u+n); b.push_back(v+n); 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{ for (ll j = 0; j < b.size(); j++) { uf.par[b[j]]=-1; uf.siz[b[j]]=1; } b={}; ans=x; } a.push_back(ans); } for (ll i = 0; i < a.size(); i++) { cout << a[i] << endl; } }