結果

問題 No.2293 無向辺 2-SAT
ユーザー 👑 p-adicp-adic
提出日時 2023-05-09 01:12:39
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 660 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 518,372 KB
最終ジャッジ日時 2024-11-25 14:34:04
合計ジャッジ時間 157,832 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
59,856 KB
testcase_01 AC 45 ms
76,276 KB
testcase_02 AC 36 ms
58,372 KB
testcase_03 AC 485 ms
133,616 KB
testcase_04 MLE -
testcase_05 AC 1,837 ms
266,948 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 1,774 ms
267,680 KB
testcase_12 TLE -
testcase_13 AC 892 ms
342,328 KB
testcase_14 AC 512 ms
335,436 KB
testcase_15 AC 520 ms
86,336 KB
testcase_16 MLE -
testcase_17 AC 624 ms
202,316 KB
testcase_18 TLE -
testcase_19 MLE -
testcase_20 AC 1,211 ms
239,984 KB
testcase_21 TLE -
testcase_22 AC 822 ms
211,476 KB
testcase_23 AC 738 ms
219,124 KB
testcase_24 AC 742 ms
464,776 KB
testcase_25 AC 655 ms
212,100 KB
testcase_26 AC 722 ms
460,948 KB
testcase_27 AC 742 ms
214,148 KB
testcase_28 AC 770 ms
213,128 KB
testcase_29 AC 751 ms
460,788 KB
testcase_30 AC 747 ms
214,304 KB
testcase_31 AC 759 ms
469,560 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 2,799 ms
262,036 KB
testcase_49 AC 1,780 ms
258,932 KB
testcase_50 AC 1,200 ms
243,500 KB
testcase_51 AC 890 ms
215,676 KB
testcase_52 AC 757 ms
209,780 KB
testcase_53 AC 665 ms
200,364 KB
testcase_54 AC 709 ms
203,964 KB
testcase_55 AC 697 ms
454,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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,True
	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)
				s=p[r(u)]!=p[r(w)]
			print(pow(2,n//2,P)if s else 0)
0