結果

問題 No.1254 補強への架け橋
ユーザー tamatotamato
提出日時 2020-10-09 22:05:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 441 ms / 2,000 ms
コード長 2,066 bytes
コンパイル時間 633 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 124,092 KB
最終ジャッジ日時 2024-07-20 11:33:36
合計ジャッジ時間 26,892 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 123
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    from collections import deque
    input = sys.stdin.buffer.readline

    class UnionFind():
        def __init__(self, n):
            self.n = n
            self.root = [-1] * (n + 1)
            self.rnk = [0] * (n + 1)

        def find_root(self, x):
            while self.root[x] >= 0:
                x = self.root[x]
            return x

        def unite(self, x, y):
            x = self.find_root(x)
            y = self.find_root(y)
            if x == y:
                return
            elif self.rnk[x] > self.rnk[y]:
                self.root[x] += self.root[y]
                self.root[y] = x
            else:
                self.root[y] += self.root[x]
                self.root[x] = y
                if self.rnk[x] == self.rnk[y]:
                    self.rnk[y] += 1

        def isSameGroup(self, x, y):
            return self.find_root(x) == self.find_root(y)

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

    N = int(input())
    E = []
    UF = UnionFind(N)
    aa = bb = 0
    ii = N+1
    adj = [[] for _ in range(N+1)]
    for i in range(1, N+1):
        a, b = map(int, input().split())
        E.append((a, b))
        if UF.isSameGroup(a, b):
            aa = a
            bb = b
            ii = i
        else:
            UF.unite(a, b)
            adj[a].append((b, i))
            adj[b].append((a, i))

    que = deque()
    que.append(1)
    seen = [-1] * (N+1)
    seen[1] = 0
    par = [0] * (N+1)
    while que:
        v = que.popleft()
        for u, e in adj[v]:
            if seen[u] == -1:
                seen[u] = seen[v] + 1
                par[u] = (v, e)
                que.append(u)

    ans = {ii}
    v = aa
    while v != 1:
        p, e = par[v]
        ans.add(e)
        v = p
    v = bb
    while v != 1:
        p, e = par[v]
        if e in ans:
            ans.discard(e)
        else:
            ans.add(e)
        v = p
    print(len(ans))
    print(*ans)


if __name__ == '__main__':
    main()
0