結果

問題 No.2293 無向辺 2-SAT
ユーザー 👑 p-adicp-adic
提出日時 2023-05-09 01:12:04
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 660 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 99,596 KB
最終ジャッジ日時 2024-11-25 14:31:07
合計ジャッジ時間 234,297 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
17,568 KB
testcase_01 AC 110 ms
50,852 KB
testcase_02 AC 28 ms
40,552 KB
testcase_03 AC 1,644 ms
75,364 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 1,685 ms
17,572 KB
testcase_15 AC 1,406 ms
58,668 KB
testcase_16 TLE -
testcase_17 AC 3,620 ms
83,420 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 2,985 ms
57,204 KB
testcase_23 AC 2,961 ms
60,704 KB
testcase_24 AC 2,929 ms
57,488 KB
testcase_25 AC 3,012 ms
56,928 KB
testcase_26 AC 2,918 ms
59,024 KB
testcase_27 AC 2,961 ms
96,780 KB
testcase_28 AC 2,973 ms
58,912 KB
testcase_29 AC 2,944 ms
96,084 KB
testcase_30 AC 2,903 ms
56,924 KB
testcase_31 AC 2,963 ms
59,504 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 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 AC 3,916 ms
51,476 KB
testcase_53 AC 3,377 ms
51,864 KB
testcase_54 AC 2,990 ms
51,816 KB
testcase_55 AC 2,823 ms
99,596 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