結果
問題 | No.2293 無向辺 2-SAT |
ユーザー | 👑 p-adic |
提出日時 | 2023-05-09 01:14:32 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 662 bytes |
コンパイル時間 | 219 ms |
コンパイル使用メモリ | 82,180 KB |
実行使用メモリ | 522,496 KB |
最終ジャッジ日時 | 2024-11-25 14:38:11 |
合計ジャッジ時間 | 162,643 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
316,268 KB |
testcase_01 | AC | 49 ms
75,604 KB |
testcase_02 | AC | 39 ms
298,844 KB |
testcase_03 | AC | 534 ms
133,356 KB |
testcase_04 | MLE | - |
testcase_05 | AC | 1,906 ms
266,820 KB |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | MLE | - |
testcase_12 | TLE | - |
testcase_13 | AC | 966 ms
91,384 KB |
testcase_14 | AC | 572 ms
86,920 KB |
testcase_15 | AC | 586 ms
86,088 KB |
testcase_16 | MLE | - |
testcase_17 | AC | 707 ms
202,072 KB |
testcase_18 | TLE | - |
testcase_19 | AC | 2,112 ms
265,240 KB |
testcase_20 | AC | 1,320 ms
241,960 KB |
testcase_21 | TLE | - |
testcase_22 | AC | 905 ms
214,548 KB |
testcase_23 | AC | 854 ms
468,428 KB |
testcase_24 | AC | 885 ms
216,200 KB |
testcase_25 | AC | 786 ms
461,112 KB |
testcase_26 | AC | 845 ms
215,636 KB |
testcase_27 | AC | 880 ms
213,456 KB |
testcase_28 | AC | 911 ms
214,880 KB |
testcase_29 | AC | 897 ms
214,804 KB |
testcase_30 | AC | 880 ms
215,584 KB |
testcase_31 | AC | 893 ms
225,196 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 | TLE | - |
testcase_47 | TLE | - |
testcase_48 | AC | 3,164 ms
262,156 KB |
testcase_49 | AC | 2,035 ms
258,872 KB |
testcase_50 | AC | 1,372 ms
243,928 KB |
testcase_51 | AC | 1,052 ms
218,764 KB |
testcase_52 | AC | 901 ms
209,476 KB |
testcase_53 | AC | 795 ms
200,360 KB |
testcase_54 | AC | 864 ms
204,072 KB |
testcase_55 | AC | 850 ms
454,424 KB |
ソースコード
I,J,R=input,int,range X=I().split() N,Q,P,p=J(X[0]),J(X[1]),998244353,[] def r(i): m=p[i] while i!=m: p[i]=i=p[m] m=p[i] return i n=0 def g(i,j): global n if p[r(i)]!=r(j):p[r(i)],n=r(j),n-1 U=[0]*N while Q>0: V,T,L,s=set(),[],0,1 while Q>0: Q,X=Q-1,I().split() t,A=J(X[0]),T.append if t==3: A((t,)) break else: u,v=J(X[1])-1,J(X[2])-1 V.add(u),V.add(v),A((t,u,v)) for u in V:U[u],L=L,L+1 n=N*2 p=[i for i in R(n)] for l in T: if l[0]==3:print(pow(2,N,P)) else: if s: u,v=U[l[1]],U[l[2]] w=u+L if l[0]==1:g(u,v),g(w,v+L) else:g(w,v),g(u,v+L) if p[r(u)]==p[r(w)]:s=0 print(pow(2,n//2,P)if s else 0)