結果

問題 No.2536 同値性と充足可能性
ユーザー flygon
提出日時 2023-11-10 22:00:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,319 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 103,676 KB
最終ジャッジ日時 2024-09-26 01:31:33
合計ジャッジ時間 5,878 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 23 WA * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd
from collections import defaultdict
n,m = map(int,input().split())
graph = [[] for i in range(n+1)]
for i in range(m):
    u, e, v = map(str,input().split())
    u = int(u)
    v = int(v)
    if e == "<=/=>":
        graph[u].append((v,1))
        graph[v].append((u,1))
    else:
        graph[u].append((v,0))
        graph[v].append((u,0))

def bfs(s, n):
    que = deque([s])
    depth = [-1]*(n+1)
    pre = [-1]*(n+1)
    depth[s] = 0
    ok = 1
    while que:
        crr = que.popleft()
        for nxt,w in graph[crr]:
            if depth[nxt] == -1:
                depth[nxt] = depth[crr]^w
                pre[nxt] = crr
                que.append(nxt)
            else:
                if depth[nxt] != depth[crr]^w:
                    ok = 0

    return ok, depth
ok, d = bfs(1, n)
if not ok:
    print('No')
else:
    z = []
    o = []
    for i in range(1, n+1):
        if d[i] == 1:
            o.append(i)
        else:
            z.append(i)
    print("Yes")
    if len(o) > len(z):
        print(len(o))
        print(*o)
    else:
        print(len(z))
        print(*z)
0