結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 39 ms
51,840 KB
testcase_05 AC 39 ms
51,968 KB
testcase_06 AC 39 ms
52,096 KB
testcase_07 AC 40 ms
52,224 KB
testcase_08 AC 40 ms
51,968 KB
testcase_09 AC 39 ms
52,224 KB
testcase_10 AC 39 ms
52,096 KB
testcase_11 AC 39 ms
51,968 KB
testcase_12 AC 39 ms
52,352 KB
testcase_13 AC 39 ms
52,096 KB
testcase_14 AC 39 ms
51,840 KB
testcase_15 AC 37 ms
52,096 KB
testcase_16 AC 39 ms
51,840 KB
testcase_17 AC 84 ms
73,728 KB
testcase_18 AC 82 ms
73,472 KB
testcase_19 AC 40 ms
52,736 KB
testcase_20 AC 103 ms
76,544 KB
testcase_21 AC 96 ms
76,192 KB
testcase_22 AC 108 ms
76,580 KB
testcase_23 AC 190 ms
77,440 KB
testcase_24 AC 206 ms
77,568 KB
testcase_25 AC 268 ms
85,700 KB
testcase_26 AC 292 ms
85,664 KB
testcase_27 AC 248 ms
85,124 KB
testcase_28 AC 289 ms
83,828 KB
testcase_29 AC 273 ms
84,804 KB
testcase_30 AC 263 ms
87,292 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