結果

問題 No.416 旅行会社
ユーザー nebukuro09nebukuro09
提出日時 2016-10-19 17:21:49
言語 PyPy2
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,627 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 76,800 KB
実行使用メモリ 432,132 KB
最終ジャッジ日時 2024-11-22 16:49:27
合計ジャッジ時間 54,872 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 86 ms
352,196 KB
testcase_02 AC 83 ms
82,304 KB
testcase_03 AC 86 ms
384,736 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 TLE -
testcase_11 AC 441 ms
432,132 KB
testcase_12 AC 470 ms
147,780 KB
testcase_13 AC 422 ms
130,880 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import copy

class UnionFind(object):
    def __init__(self, n):
        self.uf = [-1 for _ in xrange(n)]
        self.sets = {0:set([0])}

    def union(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x == y:
            return []
        if self.uf[x] >= self.uf[y]:
            if self.uf[x] == self.uf[y] == -1:
                self.sets[y] = set([x, y])
            elif self.uf[x] == -1:
                self.sets[y].add(x)
            else:
                self.sets[y] |= self.sets[x]
            self.uf[y] += self.uf[x]
            self.uf[x] = y
            return self.sets[y]
        else:
            if self.uf[y] == -1:
                self.sets[x].add(y)
            else:
                self.sets[x] |= self.sets[y]
            self.uf[x] += self.uf[y]
            self.uf[y] = x
            return self.sets[x]

    def find(self, x):
        leaves = []
        while self.uf[x] >= 0:
            leaves.append(x)
            x = self.uf[x]
        for lf in leaves:
            self.uf[lf] = x
        return x
    
N, M, Q = map(int, raw_input().split())
AB = set([tuple(map(lambda x:int(x)-1, raw_input().split())) for _ in xrange(M)])
CD = [tuple(map(lambda x:int(x)-1, raw_input().split())) for _ in xrange(Q)]
AB -= set(CD)

uf = UnionFind(N)
for a, b in AB:
    uf.union(a, b)
ans = [-1 for _ in xrange(N)]
old_set = set(uf.sets[uf.find(0)])
for i in xrange(Q-1, -1, -1):
    c, d = CD[i]
    uf.union(c, d)
    new_set = uf.sets[uf.find(0)]
    for j in new_set - old_set:
        ans[j] = i+1
    old_set = copy.copy(new_set)
for i in xrange(1, N):
    print ans[i]
    
0