結果
問題 | No.2293 無向辺 2-SAT |
ユーザー | hiro71687k |
提出日時 | 2023-05-10 18:08:18 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 526 ms / 4,000 ms |
コード長 | 2,495 bytes |
コンパイル時間 | 3,946 ms |
コンパイル使用メモリ | 265,200 KB |
実行使用メモリ | 26,028 KB |
最終ジャッジ日時 | 2024-05-05 04:54:44 |
合計ジャッジ時間 | 32,056 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 12 ms
15,872 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 417 ms
26,028 KB |
testcase_04 | AC | 408 ms
17,972 KB |
testcase_05 | AC | 396 ms
11,748 KB |
testcase_06 | AC | 396 ms
11,848 KB |
testcase_07 | AC | 277 ms
17,968 KB |
testcase_08 | AC | 392 ms
17,968 KB |
testcase_09 | AC | 370 ms
18,092 KB |
testcase_10 | AC | 357 ms
17,968 KB |
testcase_11 | AC | 411 ms
18,132 KB |
testcase_12 | AC | 399 ms
18,100 KB |
testcase_13 | AC | 354 ms
5,796 KB |
testcase_14 | AC | 338 ms
5,604 KB |
testcase_15 | AC | 331 ms
5,496 KB |
testcase_16 | AC | 402 ms
18,116 KB |
testcase_17 | AC | 406 ms
18,104 KB |
testcase_18 | AC | 410 ms
18,104 KB |
testcase_19 | AC | 201 ms
10,828 KB |
testcase_20 | AC | 416 ms
18,004 KB |
testcase_21 | AC | 401 ms
17,964 KB |
testcase_22 | AC | 435 ms
18,272 KB |
testcase_23 | AC | 429 ms
18,392 KB |
testcase_24 | AC | 422 ms
18,280 KB |
testcase_25 | AC | 415 ms
18,140 KB |
testcase_26 | AC | 410 ms
18,140 KB |
testcase_27 | AC | 409 ms
18,148 KB |
testcase_28 | AC | 404 ms
18,144 KB |
testcase_29 | AC | 416 ms
18,264 KB |
testcase_30 | AC | 421 ms
18,276 KB |
testcase_31 | AC | 419 ms
18,268 KB |
testcase_32 | AC | 391 ms
17,968 KB |
testcase_33 | AC | 429 ms
18,096 KB |
testcase_34 | AC | 400 ms
17,972 KB |
testcase_35 | AC | 404 ms
17,968 KB |
testcase_36 | AC | 391 ms
18,092 KB |
testcase_37 | AC | 390 ms
18,100 KB |
testcase_38 | AC | 399 ms
18,092 KB |
testcase_39 | AC | 412 ms
18,096 KB |
testcase_40 | AC | 393 ms
18,092 KB |
testcase_41 | AC | 383 ms
18,092 KB |
testcase_42 | AC | 394 ms
17,968 KB |
testcase_43 | AC | 389 ms
18,096 KB |
testcase_44 | AC | 413 ms
17,968 KB |
testcase_45 | AC | 417 ms
18,096 KB |
testcase_46 | AC | 430 ms
18,096 KB |
testcase_47 | AC | 415 ms
18,096 KB |
testcase_48 | AC | 424 ms
17,972 KB |
testcase_49 | AC | 405 ms
17,988 KB |
testcase_50 | AC | 426 ms
17,992 KB |
testcase_51 | AC | 422 ms
18,096 KB |
testcase_52 | AC | 413 ms
18,176 KB |
testcase_53 | AC | 412 ms
18,108 KB |
testcase_54 | AC | 526 ms
18,364 KB |
testcase_55 | AC | 523 ms
18,612 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; } }