結果

問題 No.2536 同値性と充足可能性
ユーザー mo124121mo124121
提出日時 2023-11-10 22:08:39
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,105 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 109,952 KB
最終ジャッジ日時 2024-09-26 01:38:42
合計ジャッジ時間 7,610 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,272 KB
testcase_01 AC 37 ms
54,144 KB
testcase_02 WA -
testcase_03 AC 39 ms
53,760 KB
testcase_04 AC 40 ms
54,272 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 42 ms
54,528 KB
testcase_20 AC 76 ms
76,032 KB
testcase_21 AC 78 ms
76,032 KB
testcase_22 AC 76 ms
76,524 KB
testcase_23 AC 172 ms
77,028 KB
testcase_24 AC 162 ms
77,056 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(2 * 10**3)

if sys.implementation.name == "pypy":
    import pypyjit

    pypyjit.set_param("max_unroll_recursion=-1")


from collections import defaultdict


input = lambda: sys.stdin.readline().rstrip()


class UnionFind:
    def __init__(self, N):
        self.N = N
        self.parent_or_size = [-1] * N
        self.group_count = N

    def root(self, x):
        if self.parent_or_size[x] < 0:
            return x
        else:
            self.parent_or_size[x] = self.root(self.parent_or_size[x])
            return self.parent_or_size[x]

    def unite(self, x, y):
        root_x = self.root(x)
        root_y = self.root(y)
        if root_x == root_y:
            return
        if -self.parent_or_size[root_x] < -self.parent_or_size[root_y]:
            root_x, root_y = root_y, root_x
        self.parent_or_size[root_x] += self.parent_or_size[root_y]
        self.parent_or_size[root_y] = root_x
        self.group_count -= 1

    def same(self, x, y):
        return self.root(x) == self.root(y)

    def size(self, x):
        return -self.parent_or_size[self.root(x)]

    def groups(self):
        ret = defaultdict(list)
        for i in range(self.N):
            ret[self.root(i)].append(i)
        return [group for group in ret.values()]


N, M = map(int, input().split())

uf = UnionFind(N * 2)
for _ in range(M):
    i, s, j = input().split()
    i = int(i) - 1
    j = int(j) - 1
    if len(s) == 4:
        uf.unite(i, j)
        uf.unite(i + N, j + N)
    else:
        uf.unite(i, j + N)
        uf.unite(i + N, j)

for i in range(N):
    if uf.same(i, i + N):
        print("No")
        exit()

ans = []
for grp in uf.groups():
    cand1 = []
    cand2 = []
    f = grp[0]
    for node in grp:
        if node < N:
            if uf.same(f, node):
                cand1.append(node + 1)
            else:
                cand2.append(node + 1)
    if len(cand1) > len(cand2):
        ans.extend(cand1)
    else:
        ans.extend(cand2)

if len(ans) >= N // 2:
    print("Yes")
    print(len(ans))
    print(*ans)
else:
    print("No")
0