結果

問題 No.416 旅行会社
ユーザー neterukunneterukun
提出日時 2021-01-03 00:54:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,103 ms / 4,000 ms
コード長 1,747 bytes
コンパイル時間 398 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 149,340 KB
最終ジャッジ日時 2024-05-08 16:02:49
合計ジャッジ時間 12,609 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 464 ms
122,036 KB
testcase_01 AC 41 ms
52,864 KB
testcase_02 AC 41 ms
52,480 KB
testcase_03 AC 41 ms
52,736 KB
testcase_04 AC 41 ms
53,248 KB
testcase_05 AC 46 ms
58,880 KB
testcase_06 AC 49 ms
60,288 KB
testcase_07 AC 96 ms
76,672 KB
testcase_08 AC 140 ms
78,464 KB
testcase_09 AC 226 ms
82,196 KB
testcase_10 AC 480 ms
121,908 KB
testcase_11 AC 514 ms
121,136 KB
testcase_12 AC 542 ms
122,392 KB
testcase_13 AC 493 ms
120,500 KB
testcase_14 AC 1,054 ms
149,212 KB
testcase_15 AC 1,092 ms
149,340 KB
testcase_16 AC 1,026 ms
148,452 KB
testcase_17 AC 1,039 ms
149,340 KB
testcase_18 AC 1,103 ms
148,956 KB
testcase_19 AC 860 ms
130,432 KB
testcase_20 AC 845 ms
130,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left


class PertiallyPersistentUnionFind:
    def __init__(self, n):
        self.INF = 10 ** 9
        self.parent = [-1] * n
        self.time = [self.INF] * n
        self.size = [[(-1, -1)] for i in range(n)]

    def root(self, t, x):
        while self.time[x] <= t:
            x = self.parent[x]
        return x

    def merge(self, t, x, y):
        x = self.root(t, x)
        y = self.root(t, y)
        if x == y:
            return False
        if self.parent[x] > self.parent[y]:
            x, y = y, x
        self.parent[x] += self.parent[y]
        self.size[x].append((t, self.parent[x]))
        self.parent[y] = x
        self.time[y] = t
        return True

    def same(self, t, x, y):
        return self.root(t, x) == self.root(t, y)

    def size(self, t, x):
        x = self.root(t, x)
        idx = bisect_left(self.size[x], (t, self.INF)) - 1
        return -self.size[x][idx][1]


n, m, q = map(int, input().split())
edges = [tuple(map(int, input().split())) for i in range(m)]
queries = [tuple(map(int, input().split())) for i in range(q)]


remain = set(edges)
for e in queries:
    remain.remove(e)

uf = PertiallyPersistentUnionFind(n)
for a, b in remain:
    a -= 1
    b -= 1
    uf.merge(0, a, b)

for t, (a, b) in enumerate(queries[::-1]):
    a -= 1
    b -= 1
    t += 1
    uf.merge(t, a, b)

ans = []
for v in range(1, n):
    if not uf.same(q, 0, v):
        ans.append(0)
        continue
    ok = q
    ng = -1
    while abs(ok - ng) > 1:
        mid = (ok + ng) // 2
        if uf.same(mid, 0, v):
            ok = mid
        else:
            ng = mid
    if ok == 0:
        ans.append(-1)
    else:
        ans.append(q - ok + 1)
    
print('\n'.join(map(str, ans)))
0