結果

問題 No.416 旅行会社
ユーザー roarisroaris
提出日時 2020-12-09 19:38:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,757 ms / 4,000 ms
コード長 1,964 bytes
コンパイル時間 444 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 136,064 KB
最終ジャッジ日時 2024-12-14 20:59:04
合計ジャッジ時間 16,242 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 308 ms
112,432 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 37 ms
52,480 KB
testcase_03 AC 40 ms
52,992 KB
testcase_04 AC 40 ms
52,736 KB
testcase_05 AC 41 ms
52,992 KB
testcase_06 AC 45 ms
53,488 KB
testcase_07 AC 55 ms
65,024 KB
testcase_08 AC 122 ms
77,572 KB
testcase_09 AC 256 ms
81,704 KB
testcase_10 AC 519 ms
112,368 KB
testcase_11 AC 497 ms
110,236 KB
testcase_12 AC 540 ms
113,352 KB
testcase_13 AC 286 ms
111,224 KB
testcase_14 AC 1,751 ms
136,064 KB
testcase_15 AC 1,705 ms
134,872 KB
testcase_16 AC 1,661 ms
133,948 KB
testcase_17 AC 1,750 ms
135,360 KB
testcase_18 AC 1,757 ms
135,224 KB
testcase_19 AC 1,261 ms
120,764 KB
testcase_20 AC 1,223 ms
121,332 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)]
AB.sort()
CD_ = CD[:]
CD_.sort()
idx = 0
uf = Unionfind(N)

for A, B in AB:
    if idx<Q and (A, B)==CD_[idx]:
        idx += 1
    else:
        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