結果

問題 No.416 旅行会社
ユーザー roarisroaris
提出日時 2020-12-09 19:54:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 799 ms / 4,000 ms
コード長 1,857 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 154,048 KB
最終ジャッジ日時 2024-05-08 16:01:12
合計ジャッジ時間 8,916 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 282 ms
118,992 KB
testcase_01 AC 38 ms
53,380 KB
testcase_02 AC 39 ms
52,392 KB
testcase_03 AC 39 ms
53,632 KB
testcase_04 AC 39 ms
53,216 KB
testcase_05 AC 40 ms
54,252 KB
testcase_06 AC 40 ms
53,856 KB
testcase_07 AC 54 ms
65,404 KB
testcase_08 AC 116 ms
77,940 KB
testcase_09 AC 213 ms
82,336 KB
testcase_10 AC 283 ms
118,920 KB
testcase_11 AC 260 ms
118,792 KB
testcase_12 AC 278 ms
119,400 KB
testcase_13 AC 255 ms
118,708 KB
testcase_14 AC 762 ms
153,548 KB
testcase_15 AC 735 ms
153,232 KB
testcase_16 AC 697 ms
153,856 KB
testcase_17 AC 799 ms
154,048 KB
testcase_18 AC 741 ms
153,620 KB
testcase_19 AC 600 ms
121,376 KB
testcase_20 AC 602 ms
121,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

class Unionfind:
    def __init__(self, n):
        self.par = [-1]*n
        self.rank = [1]*n
        self.belong = [[v] for v in range(n)]
    
    def root(self, x):
        r = x
        
        while not self.par[r]<0:
            r = self.par[r]
        
        t = x
        
        while t!=r:
            tmp = t
            t = self.par[t]
            self.par[tmp] = r
        
        return r
    
    def unite(self, x, y):
        rx = self.root(x)
        ry = self.root(y)
        
        if rx==ry:
            return
        
        if len(self.belong[rx])<=len(self.belong[ry]):
            self.par[ry] += self.par[rx]
            self.par[rx] = ry
            
            if self.rank[rx]==self.rank[ry]:
                self.rank[ry] += 1
                
            self.belong[ry] += self.belong[rx]
        else:
            self.par[rx] += self.par[ry]
            self.par[ry] = rx
            self.belong[rx] += self.belong[ry]
            
    def is_same(self, x, y):
        return self.root(x)==self.root(y)
    
    def count(self, x):
        return -self.par[self.root(x)]

N, M, Q = map(int, input().split())
AB = [tuple(map(int, input().split())) for _ in range(M)]
CD = [tuple(map(int, input().split())) for _ in range(Q)]
s = set(10**7*C+D for C, D in CD)
uf = Unionfind(N)

for A, B in AB:
    if 10**7*A+B not in s:
        uf.unite(A-1, B-1)

ans = [0]*N

for v in uf.belong[uf.root(0)]:
    ans[v] = -1

for i in range(Q-1, -1, -1):
    C, D = CD[i]
    
    if uf.is_same(0, C-1) and not uf.is_same(0, D-1):
        for v in uf.belong[uf.root(D-1)]:
            ans[v] = i+1
    elif uf.is_same(0, D-1) and not uf.is_same(0, C-1):
        for v in uf.belong[uf.root(C-1)]:
            ans[v] = i+1
    
    uf.unite(C-1, D-1)

for ans_i in ans[1:]:
    print(ans_i)
0