結果

問題 No.416 旅行会社
ユーザー lllllll88938494lllllll88938494
提出日時 2023-05-11 11:56:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,224 ms / 4,000 ms
コード長 1,854 bytes
コンパイル時間 791 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 171,964 KB
最終ジャッジ日時 2024-05-05 13:23:26
合計ジャッジ時間 12,805 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 422 ms
145,644 KB
testcase_01 AC 45 ms
52,096 KB
testcase_02 AC 42 ms
52,480 KB
testcase_03 AC 43 ms
52,480 KB
testcase_04 AC 43 ms
52,736 KB
testcase_05 AC 44 ms
53,504 KB
testcase_06 AC 46 ms
53,760 KB
testcase_07 AC 75 ms
69,248 KB
testcase_08 AC 156 ms
78,080 KB
testcase_09 AC 279 ms
84,436 KB
testcase_10 AC 479 ms
145,776 KB
testcase_11 AC 462 ms
145,424 KB
testcase_12 AC 475 ms
145,780 KB
testcase_13 AC 431 ms
145,512 KB
testcase_14 AC 1,113 ms
171,964 KB
testcase_15 AC 1,179 ms
169,756 KB
testcase_16 AC 1,119 ms
169,004 KB
testcase_17 AC 1,224 ms
170,068 KB
testcase_18 AC 1,200 ms
171,220 KB
testcase_19 AC 908 ms
145,208 KB
testcase_20 AC 852 ms
147,260 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
    #もしiと1が連結ならば 上でi,jが連結でないことがわかっているので
    #1とj集合は連結でないよってj集合は新たに1とつながる
    #ここでansに破壊時刻を記憶 unionの時に実際にマージする
    #family[] は xではなく find(x)
    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