結果

問題 No.2536 同値性と充足可能性
ユーザー flygonflygon
提出日時 2023-11-10 22:10:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,491 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 111,348 KB
最終ジャッジ日時 2023-11-10 22:10:29
合計ジャッジ時間 6,420 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,728 KB
testcase_01 AC 45 ms
55,728 KB
testcase_02 AC 43 ms
55,728 KB
testcase_03 AC 43 ms
55,728 KB
testcase_04 AC 44 ms
55,728 KB
testcase_05 AC 43 ms
55,728 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 42 ms
55,728 KB
testcase_10 AC 42 ms
55,728 KB
testcase_11 AC 44 ms
55,728 KB
testcase_12 WA -
testcase_13 AC 43 ms
55,728 KB
testcase_14 AC 44 ms
55,728 KB
testcase_15 AC 43 ms
55,728 KB
testcase_16 AC 43 ms
55,728 KB
testcase_17 AC 58 ms
66,772 KB
testcase_18 AC 55 ms
66,772 KB
testcase_19 WA -
testcase_20 AC 65 ms
73,320 KB
testcase_21 AC 76 ms
77,032 KB
testcase_22 AC 78 ms
77,032 KB
testcase_23 AC 195 ms
86,920 KB
testcase_24 AC 201 ms
86,932 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

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))

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

    return ok, ss

big = []
ok = 1
for i in range(1, n+1):
    if depth[i] != -1: continue
    oki, s = bfs(1, n)
    ok &= oki
    o = []
    z = []
    for j in s:
        if depth[j] == 1:
            o.append(j)
        elif depth[j] == 0:
            z.append(j)
    if len(o) > len(z):
        big += o
    else:
        big += z

if not ok:
    print('No')
else:
    no = []
    for i in range(1, n+1):
        if depth[i] == -1:
            big.append(i)
    print('Yes')
    big.sort()
    print(len(big))
    print(*big)
0