結果

問題 No.416 旅行会社
ユーザー roarisroaris
提出日時 2020-12-09 19:44:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 818 ms / 4,000 ms
コード長 1,922 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 153,640 KB
最終ジャッジ日時 2024-05-08 15:58:36
合計ジャッジ時間 8,866 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 292 ms
118,852 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 39 ms
52,992 KB
testcase_03 AC 39 ms
52,736 KB
testcase_04 AC 39 ms
52,864 KB
testcase_05 AC 40 ms
52,736 KB
testcase_06 AC 41 ms
53,376 KB
testcase_07 AC 53 ms
64,512 KB
testcase_08 AC 116 ms
78,208 KB
testcase_09 AC 211 ms
82,244 KB
testcase_10 AC 293 ms
118,916 KB
testcase_11 AC 271 ms
118,784 KB
testcase_12 AC 277 ms
119,168 KB
testcase_13 AC 280 ms
118,656 KB
testcase_14 AC 778 ms
153,316 KB
testcase_15 AC 744 ms
153,328 KB
testcase_16 AC 719 ms
153,540 KB
testcase_17 AC 818 ms
153,640 KB
testcase_18 AC 772 ms
153,356 KB
testcase_19 AC 617 ms
121,232 KB
testcase_20 AC 605 ms
122,716 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 self.rank[rx]<=self.rank[ry]:
            self.par[ry] += self.par[rx]
            self.par[rx] = ry
            
            if self.rank[rx]==self.rank[ry]:
                self.rank[ry] += 1
                
            for v in self.belong[rx]:
                self.belong[ry].append(v)
        else:
            self.par[rx] += self.par[ry]
            self.par[ry] = rx
            
            for v in self.belong[ry]:
                self.belong[rx].append(v)
            
    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