結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 380 ms
145,652 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 40 ms
52,352 KB
testcase_04 AC 41 ms
52,608 KB
testcase_05 AC 42 ms
52,864 KB
testcase_06 AC 43 ms
53,888 KB
testcase_07 AC 71 ms
69,248 KB
testcase_08 AC 146 ms
77,952 KB
testcase_09 AC 252 ms
84,192 KB
testcase_10 AC 409 ms
145,640 KB
testcase_11 AC 410 ms
145,388 KB
testcase_12 AC 427 ms
145,644 KB
testcase_13 AC 393 ms
145,392 KB
testcase_14 AC 951 ms
171,988 KB
testcase_15 AC 1,030 ms
170,572 KB
testcase_16 AC 962 ms
169,528 KB
testcase_17 AC 1,058 ms
170,076 KB
testcase_18 AC 1,016 ms
171,456 KB
testcase_19 AC 799 ms
147,252 KB
testcase_20 AC 742 ms
147,140 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