結果

問題 No.2536 同値性と充足可能性
ユーザー detteiuudetteiuu
提出日時 2024-10-25 23:31:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 403 ms / 2,000 ms
コード長 1,079 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 101,908 KB
最終ジャッジ日時 2024-10-25 23:32:12
合計ジャッジ時間 6,460 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,628 KB
testcase_01 AC 43 ms
54,284 KB
testcase_02 AC 42 ms
55,280 KB
testcase_03 AC 44 ms
55,244 KB
testcase_04 AC 42 ms
54,544 KB
testcase_05 AC 43 ms
55,828 KB
testcase_06 AC 43 ms
53,696 KB
testcase_07 AC 42 ms
55,148 KB
testcase_08 AC 43 ms
55,644 KB
testcase_09 AC 44 ms
55,824 KB
testcase_10 AC 43 ms
53,984 KB
testcase_11 AC 43 ms
53,928 KB
testcase_12 AC 45 ms
55,328 KB
testcase_13 AC 43 ms
55,088 KB
testcase_14 AC 44 ms
54,756 KB
testcase_15 AC 44 ms
54,320 KB
testcase_16 AC 44 ms
55,252 KB
testcase_17 AC 72 ms
72,160 KB
testcase_18 AC 70 ms
71,128 KB
testcase_19 AC 46 ms
55,292 KB
testcase_20 AC 82 ms
77,172 KB
testcase_21 AC 83 ms
77,120 KB
testcase_22 AC 88 ms
77,144 KB
testcase_23 AC 219 ms
86,452 KB
testcase_24 AC 211 ms
86,596 KB
testcase_25 AC 363 ms
101,464 KB
testcase_26 AC 364 ms
101,832 KB
testcase_27 AC 403 ms
101,908 KB
testcase_28 AC 345 ms
99,964 KB
testcase_29 AC 344 ms
100,124 KB
testcase_30 AC 380 ms
101,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

N, M = map(int, input().split())
G = [[] for _ in range(N)]
for _ in range(M):
    u, E, v = input().split()
    u, v = int(u)-1, int(v)-1
    if E == "<==>":
        G[u].append((v, 0))
        G[v].append((u, 0))
    else:
        G[u].append((v, 1))
        G[v].append((u, 1))

visited = [-1]*N
ans = []
for i in range(N):
    if visited[i] == -1:
        visited[i] = 0
        que = deque()
        que.append(i)
        zero = [i]
        one = []
        while que:
            n = que.popleft()
            for v, c in G[n]:
                if visited[v] == -1:
                    visited[v] = (visited[n]+c)%2
                    que.append(v)
                    if visited[v] == 0:
                        zero.append(v)
                    else:
                        one.append(v)
                elif visited[v] != (visited[n]+c)%2:
                    exit(print("No"))
        if len(zero) >= len(one):
            ans += zero
        else:
            ans += one

print("Yes")
print(len(ans))
print(*[i+1 for i in sorted(ans)])
0