結果

問題 No.416 旅行会社
ユーザー lllllll88938494lllllll88938494
提出日時 2023-05-11 11:49:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,173 ms / 4,000 ms
コード長 1,523 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 171,980 KB
最終ジャッジ日時 2024-05-05 13:20:42
合計ジャッジ時間 13,917 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 408 ms
145,900 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 38 ms
52,480 KB
testcase_03 AC 37 ms
52,736 KB
testcase_04 AC 39 ms
52,864 KB
testcase_05 AC 39 ms
53,120 KB
testcase_06 AC 41 ms
54,016 KB
testcase_07 AC 64 ms
69,504 KB
testcase_08 AC 140 ms
78,080 KB
testcase_09 AC 265 ms
84,308 KB
testcase_10 AC 443 ms
145,776 KB
testcase_11 AC 427 ms
145,384 KB
testcase_12 AC 447 ms
146,028 KB
testcase_13 AC 403 ms
145,512 KB
testcase_14 AC 1,053 ms
171,980 KB
testcase_15 AC 1,173 ms
170,148 KB
testcase_16 AC 1,035 ms
169,296 KB
testcase_17 AC 1,127 ms
170,572 KB
testcase_18 AC 1,113 ms
171,476 KB
testcase_19 AC 852 ms
145,344 KB
testcase_20 AC 782 ms
147,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind2:
    def __init__(self, n):
        self.n = n
        self.parents = [-1] * n
        self.family = [{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):
        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
        self.family[x] |= self.family[y]
        self.family[y] = {}
 
    def same(self,i,j):
        return uf.find(i) == uf.find(j)
 
    def size(self, x):
        return -self.parents[self.find(x)]

    
n,m,h=map(int,input().split())
ms=[tuple(map(int,input().split())) for i in range(m)]
hs=[tuple(map(int,input().split())) for i in range(h)]
shs = set(hs)
uf = UnionFind2(n+1)

for i in range(m):
    if ms[i] not in shs:
        uf.union(ms[i][0],ms[i][1])

ans = [0]*(n+1)
for i in range(2,n+1):
    if uf.same(1,i):
        ans[i] = -1

cnt = h
for i,j in hs[::-1]:
    if uf.same(i,j):
        cnt-=1
        continue

    if i in uf.family[uf.find(1)]:
        for k in uf.family[uf.find(j)]:
            ans[k] = cnt
    if j in uf.family[uf.find(1)]:
        for k in uf.family[uf.find(i)]:
            ans[k] = cnt
            
    uf.union(i,j)
    cnt-=1

for i in range(2,n+1):
    print(ans[i])
    
        
0