結果

問題 No.416 旅行会社
ユーザー 👑 rin204rin204
提出日時 2022-07-08 09:54:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,032 ms / 4,000 ms
コード長 1,996 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 152,768 KB
最終ジャッジ日時 2024-05-08 16:08:41
合計ジャッジ時間 11,573 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 369 ms
114,676 KB
testcase_01 AC 42 ms
52,352 KB
testcase_02 AC 42 ms
52,608 KB
testcase_03 AC 41 ms
52,608 KB
testcase_04 AC 42 ms
52,864 KB
testcase_05 AC 43 ms
53,504 KB
testcase_06 AC 45 ms
53,888 KB
testcase_07 AC 70 ms
67,200 KB
testcase_08 AC 141 ms
78,208 KB
testcase_09 AC 250 ms
82,324 KB
testcase_10 AC 402 ms
114,676 KB
testcase_11 AC 410 ms
113,908 KB
testcase_12 AC 420 ms
117,108 KB
testcase_13 AC 364 ms
114,292 KB
testcase_14 AC 973 ms
152,288 KB
testcase_15 AC 1,001 ms
151,988 KB
testcase_16 AC 1,009 ms
151,236 KB
testcase_17 AC 1,032 ms
152,412 KB
testcase_18 AC 995 ms
152,768 KB
testcase_19 AC 810 ms
133,360 KB
testcase_20 AC 815 ms
133,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
    def __init__(self, n):
        self.n = n
        self.parents = [-1] * n
        self.group = n
        self.ans = [0] * n
        self.child = [[i] for i in range(n)]

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

    def union(self, x, y, i):
        x = self.find(x)
        y = self.find(y)

        if x == y:
            return
        self.group -= 1
        if self.parents[x] > self.parents[y]:
            x, y = y, x
        p = self.find(0)
        if x == p:
            for j in self.child[y]:
                self.ans[j] = i
        elif y == p:
            for j in self.child[x]:
                self.ans[j] = i


        self.parents[x] += self.parents[y]
        self.parents[y] = x
        for c in self.child[y]:
            self.child[x].append(c)

    def size(self, x):
        return -self.parents[self.find(x)]

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

    def members(self, x):
        root = self.find(x)
        return [i for i in range(self.n) if self.find(i) == root]

    def roots(self):
        return [i for i, x in enumerate(self.parents) if x < 0]

    def group_count(self):
        return self.group

    def all_group_members(self):
        dic = {r:[] for r in self.roots()}
        for i in range(self.n):
            dic[self.find(i)].append(i)
        return dic

    def __str__(self):
        return '\n'.join('{}: {}'.format(r, self.members(r)) for r in self.roots())

n, m, q = map(int, input().split())
edges = set(tuple(map(int, input().split())) for _ in range(m))
cd = []
for _ in range(q):
    c, d = map(int, input().split())
    cd.append((c, d))
    edges.remove((c, d))

UF = UnionFind(n)
for a, b in edges:
    UF.union(a - 1, b - 1, -1)

for i in range(q - 1, -1, -1):
    c, d = cd[i]
    UF.union(c - 1, d - 1, i + 1)
print(*UF.ans[1:], sep="\n")
0