結果

問題 No.416 旅行会社
ユーザー lloyzlloyz
提出日時 2023-12-21 00:01:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,084 ms / 4,000 ms
コード長 2,985 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 82,792 KB
実行使用メモリ 161,092 KB
最終ジャッジ日時 2024-09-27 10:17:59
合計ジャッジ時間 12,119 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 343 ms
130,144 KB
testcase_01 AC 41 ms
55,188 KB
testcase_02 AC 41 ms
55,212 KB
testcase_03 AC 42 ms
54,724 KB
testcase_04 AC 42 ms
55,412 KB
testcase_05 AC 43 ms
55,940 KB
testcase_06 AC 47 ms
56,784 KB
testcase_07 AC 66 ms
71,576 KB
testcase_08 AC 140 ms
78,112 KB
testcase_09 AC 278 ms
83,600 KB
testcase_10 AC 361 ms
130,288 KB
testcase_11 AC 360 ms
130,912 KB
testcase_12 AC 366 ms
126,384 KB
testcase_13 AC 339 ms
129,776 KB
testcase_14 AC 931 ms
161,092 KB
testcase_15 AC 1,028 ms
159,444 KB
testcase_16 AC 963 ms
154,192 KB
testcase_17 AC 1,084 ms
160,472 KB
testcase_18 AC 981 ms
158,040 KB
testcase_19 AC 941 ms
145,224 KB
testcase_20 AC 844 ms
146,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

class UnionFind():
    def __init__(self, n):
        '''
        UnionFindクラス。nは要素数を表す。
        '''
        self.n = n
        self.parents = [-1] * n

    def find(self, x):
        '''
        要素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):
        '''
        要素xを含む集合と要素yを含む集合を合体する関数。
        基本的には、要素数が多い集合に統合される。
        要素数が同じときは要素yを含む集合に統合される。
        '''
        x = self.find(x)
        y = self.find(y)

        if x == y:
            return

        if self.parents[x] > self.parents[y]:
            x, y = y, x

        self.parents[x] += self.parents[y]
        self.parents[y] = x

    def size(self, x):
        '''
        要素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 len(self.roots())

    def all_group_members(self):
        group_members = defaultdict(list)
        for member in range(self.n):
            group_members[self.find(member)].append(member)
        return group_members

    def __str__(self):
        return '\n'.join(f'{r}: {m}' for r, m in self.all_group_members().items())

n, m, q = map(int, input().split())
L = set()
for _ in range(m):
    u, v = map(int, input().split())
    L.add((u - 1, v - 1))
Q = []
for _ in range(q):
    u, v = map(int, input().split())
    L.remove((u - 1, v - 1))
    Q.append((u - 1, v - 1))
UF = UnionFind(n)
M = [set([i]) for i in range(n)]
root_1 = 0
for u, v in L:
    if UF.same(u, v):
        continue
    uroot = UF.find(u)
    vroot = UF.find(v)
    UF.union(u, v)
    root = UF.find(u)
    if root == uroot:
        M[root] |= M[vroot]
        M[vroot] = set()
    else:
        M[root] |= M[uroot]
        M[uroot] = set()
    if 0 in M[root]:
        root_1 = root
ANS = [0 for _ in range(n)]
for u in M[root_1]:
    ANS[u] = -1
for i in range(q - 1, -1, -1):
    u, v = Q[i]
    if UF.same(u, v):
        continue
    uroot = UF.find(u)
    vroot = UF.find(v)
    if 0 in M[uroot]:
        for j in M[vroot]:
            ANS[j] = i + 1
    elif 0 in M[vroot]:
        for j in M[uroot]:
            ANS[j] = i + 1
    UF.union(u, v)
    root = UF.find(u)
    if root == uroot:
        M[root] |= M[vroot]
        M[vroot] = set()
    else:
        M[root] |= M[uroot]
        M[uroot] = set()
print(*ANS[1:], sep='\n')
0