結果

問題 No.2536 同値性と充足可能性
ユーザー 👑 p-adicp-adic
提出日時 2023-08-13 20:54:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 290 ms / 2,000 ms
コード長 455 bytes
コンパイル時間 370 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 87,160 KB
最終ジャッジ日時 2024-12-14 02:25:25
合計ジャッジ時間 5,332 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,224 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 39 ms
52,224 KB
testcase_04 AC 36 ms
52,352 KB
testcase_05 AC 40 ms
52,096 KB
testcase_06 AC 39 ms
52,480 KB
testcase_07 AC 38 ms
52,096 KB
testcase_08 AC 40 ms
52,352 KB
testcase_09 AC 39 ms
52,096 KB
testcase_10 AC 39 ms
52,224 KB
testcase_11 AC 40 ms
52,352 KB
testcase_12 AC 40 ms
51,968 KB
testcase_13 AC 42 ms
51,968 KB
testcase_14 AC 42 ms
51,968 KB
testcase_15 AC 41 ms
51,968 KB
testcase_16 AC 39 ms
51,712 KB
testcase_17 AC 77 ms
73,428 KB
testcase_18 AC 79 ms
73,856 KB
testcase_19 AC 41 ms
52,608 KB
testcase_20 AC 92 ms
76,032 KB
testcase_21 AC 95 ms
76,440 KB
testcase_22 AC 95 ms
76,644 KB
testcase_23 AC 186 ms
77,312 KB
testcase_24 AC 195 ms
77,608 KB
testcase_25 AC 276 ms
85,828 KB
testcase_26 AC 270 ms
85,400 KB
testcase_27 AC 249 ms
85,124 KB
testcase_28 AC 277 ms
83,320 KB
testcase_29 AC 290 ms
85,064 KB
testcase_30 AC 261 ms
87,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

R,O=range,print
I=lambda:input().split()
N,M=map(int,I())
p=[i for i in R(N*2)]
def r(i):
	m=p[i]
	while i!=m:
		p[i]=i=p[m]
		m=p[i]
	return i
for m in R(M):
	i,E,j=I()
	i,E,j=int(i)-1,E[2]<"=",int(j)-1
	p[r(i)],p[r(i+N)]=r(j+N*E),r(j+N-N*E)
c=0
C=[0]*N*2
for i in R(N):
	A,B=p[r(i)],p[r(i+N)]
	if A==B:O("No"),exit()
	if C[A]<1:C[A],C[B]=1,2
	if C[A]<2:c+=1
if c*2<N:f,c=1,N-c
else:f=0
O("Yes")
O(c)
a=[]
for i in R(N):a+=[i+1]*((C[p[r(i)]]<2)!=f)
O(*a)
0