結果

問題 No.2536 同値性と充足可能性
ユーザー 👑 p-adicp-adic
提出日時 2023-08-13 21:39:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 839 ms / 2,000 ms
コード長 455 bytes
コンパイル時間 536 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 22,872 KB
最終ジャッジ日時 2024-05-08 02:38:54
合計ジャッジ時間 8,730 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
11,008 KB
testcase_01 AC 29 ms
11,008 KB
testcase_02 AC 30 ms
11,008 KB
testcase_03 AC 30 ms
11,008 KB
testcase_04 AC 29 ms
11,008 KB
testcase_05 AC 32 ms
11,008 KB
testcase_06 AC 29 ms
10,880 KB
testcase_07 AC 29 ms
11,008 KB
testcase_08 AC 30 ms
10,880 KB
testcase_09 AC 29 ms
11,008 KB
testcase_10 AC 29 ms
10,880 KB
testcase_11 AC 29 ms
11,008 KB
testcase_12 AC 29 ms
10,880 KB
testcase_13 AC 31 ms
11,008 KB
testcase_14 AC 30 ms
10,880 KB
testcase_15 AC 30 ms
10,880 KB
testcase_16 AC 29 ms
11,008 KB
testcase_17 AC 34 ms
11,008 KB
testcase_18 AC 34 ms
11,008 KB
testcase_19 AC 30 ms
11,008 KB
testcase_20 AC 70 ms
11,008 KB
testcase_21 AC 73 ms
10,880 KB
testcase_22 AC 73 ms
11,008 KB
testcase_23 AC 480 ms
11,776 KB
testcase_24 AC 500 ms
11,776 KB
testcase_25 AC 834 ms
22,408 KB
testcase_26 AC 831 ms
22,280 KB
testcase_27 AC 827 ms
22,672 KB
testcase_28 AC 838 ms
22,028 KB
testcase_29 AC 839 ms
22,408 KB
testcase_30 AC 828 ms
22,872 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