結果
問題 | No.2536 同値性と充足可能性 |
ユーザー | titia |
提出日時 | 2023-11-12 00:08:11 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,169 bytes |
コンパイル時間 | 257 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 117,052 KB |
最終ジャッジ日時 | 2024-09-26 02:56:49 |
合計ジャッジ時間 | 6,804 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
52,480 KB |
testcase_01 | AC | 40 ms
52,608 KB |
testcase_02 | AC | 40 ms
52,352 KB |
testcase_03 | AC | 40 ms
52,480 KB |
testcase_04 | AC | 40 ms
52,352 KB |
testcase_05 | AC | 39 ms
52,736 KB |
testcase_06 | WA | - |
testcase_07 | AC | 40 ms
52,352 KB |
testcase_08 | WA | - |
testcase_09 | AC | 40 ms
52,224 KB |
testcase_10 | AC | 40 ms
52,352 KB |
testcase_11 | AC | 41 ms
52,224 KB |
testcase_12 | AC | 41 ms
52,608 KB |
testcase_13 | AC | 41 ms
52,480 KB |
testcase_14 | AC | 43 ms
52,352 KB |
testcase_15 | AC | 41 ms
52,352 KB |
testcase_16 | AC | 41 ms
52,096 KB |
testcase_17 | AC | 78 ms
73,344 KB |
testcase_18 | AC | 61 ms
65,920 KB |
testcase_19 | AC | 45 ms
57,600 KB |
testcase_20 | AC | 74 ms
76,160 KB |
testcase_21 | AC | 88 ms
76,672 KB |
testcase_22 | AC | 92 ms
76,672 KB |
testcase_23 | AC | 193 ms
81,932 KB |
testcase_24 | AC | 179 ms
81,536 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 355 ms
103,080 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 313 ms
106,496 KB |
ソースコード
import sys input = sys.stdin.readline N,M=map(int,input().split()) E=[[] for i in range(N+1)] E2=[[] for i in range(N+1)] for i in range(M): S=input().split() x=int(S[0]) y=int(S[-1]) if len(S[1])==4: E[x].append(y) E[y].append(x) else: E2[x].append(y) E2[y].append(x) # UnionFind Group = [i for i in range(N+1)] # グループ分け Nodes = [1]*(N+1) # 各グループのノードの数 def find(x): while Group[x] != x: x=Group[x] return x def Union(x,y): if find(x) != find(y): if Nodes[find(x)] < Nodes[find(y)]: Nodes[find(y)] += Nodes[find(x)] Nodes[find(x)] = 0 Group[find(x)] = find(y) else: Nodes[find(x)] += Nodes[find(y)] Nodes[find(y)] = 0 Group[find(y)] = find(x) for i in range(N+1): for to in E[i]: Union(i,to) E3=[[] for i in range(N+1)] for i in range(N+1): for to in E2[i]: if find(i)==find(to): print("No") exit() else: E3[find(i)].append(find(to)) E3[find(to)].append(find(i)) ANS=[] USE=[-1]*(N+1) for i in range(N+1): if find(i)!=i: continue if USE[i]!=-1: continue Q=[i] USE[i]=0 zero=Nodes[i] one=0 Z=[i] O=[] while Q: x=Q.pop() for to in E3[i]: if USE[to]==-1: USE[to]=USE[i]^1 if USE[to]==0: zero+=Nodes[to] Z.append(to) else: one+=Nodes[to] O.append(to) Q.append(to) else: if USE[to]==USE[i]^1: pass else: print("No") exit() if zero>=one: for z in Z: ANS.append(z) else: for o in O: ANS.append(o) SET=set(ANS) LANS=[] for i in range(1,N+1): if find(i) in SET: LANS.append(i) print("Yes") print(len(LANS)) print(*LANS)