結果

問題 No.2293 無向辺 2-SAT
ユーザー 👑 p-adicp-adic
提出日時 2023-05-09 01:22:49
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 731 bytes
コンパイル時間 438 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 531,016 KB
最終ジャッジ日時 2024-11-25 14:54:31
合計ジャッジ時間 173,473 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
315,952 KB
testcase_01 AC 58 ms
83,072 KB
testcase_02 AC 40 ms
57,856 KB
testcase_03 AC 695 ms
380,832 KB
testcase_04 MLE -
testcase_05 AC 2,478 ms
269,056 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 2,549 ms
269,620 KB
testcase_12 TLE -
testcase_13 AC 1,184 ms
108,464 KB
testcase_14 AC 667 ms
86,812 KB
testcase_15 AC 709 ms
334,772 KB
testcase_16 MLE -
testcase_17 AC 875 ms
278,236 KB
testcase_18 TLE -
testcase_19 AC 2,727 ms
268,924 KB
testcase_20 MLE -
testcase_21 TLE -
testcase_22 MLE -
testcase_23 AC 1,092 ms
283,756 KB
testcase_24 MLE -
testcase_25 AC 989 ms
281,280 KB
testcase_26 MLE -
testcase_27 AC 1,067 ms
274,920 KB
testcase_28 MLE -
testcase_29 AC 1,093 ms
278,904 KB
testcase_30 AC 1,067 ms
267,688 KB
testcase_31 AC 1,061 ms
510,252 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 TLE -
testcase_49 AC 2,644 ms
267,388 KB
testcase_50 AC 1,753 ms
265,352 KB
testcase_51 AC 1,348 ms
267,084 KB
testcase_52 AC 1,145 ms
268,096 KB
testcase_53 AC 1,018 ms
272,360 KB
testcase_54 AC 1,067 ms
268,480 KB
testcase_55 AC 1,070 ms
267,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I,J,R=input,int,range
X=I().split()
N,Q,P,p,w=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
	i,j=r(i),r(j)
	if i!=j:
		if w[i]==w[j]:w[j]+=1
		if w[i]<w[j]:p[i]=j
		else:p[j]=i
		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)]
	w=[0]*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]]
				t=u+L
				if l[0]==1:g(u,v),g(t,v+L)
				else:g(t,v),g(u,v+L)
				if p[r(u)]==p[r(t)]:s=0
			print(pow(2,n//2,P)if s else 0)
0