結果

問題 No.2912 0次パーシステントホモロジー
ユーザー rlangevinrlangevin
提出日時 2024-10-04 21:45:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 757 ms / 2,000 ms
コード長 1,406 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 110,356 KB
最終ジャッジ日時 2024-10-04 21:45:25
合計ジャッジ時間 5,332 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,652 KB
testcase_01 AC 31 ms
53,600 KB
testcase_02 AC 30 ms
53,616 KB
testcase_03 AC 31 ms
54,480 KB
testcase_04 AC 31 ms
52,708 KB
testcase_05 AC 30 ms
52,872 KB
testcase_06 AC 31 ms
54,364 KB
testcase_07 AC 32 ms
54,220 KB
testcase_08 AC 32 ms
52,544 KB
testcase_09 AC 32 ms
52,520 KB
testcase_10 AC 30 ms
52,404 KB
testcase_11 AC 30 ms
52,776 KB
testcase_12 AC 31 ms
53,300 KB
testcase_13 AC 32 ms
52,964 KB
testcase_14 AC 32 ms
53,556 KB
testcase_15 AC 68 ms
76,800 KB
testcase_16 AC 291 ms
94,092 KB
testcase_17 AC 328 ms
87,776 KB
testcase_18 AC 439 ms
90,588 KB
testcase_19 AC 692 ms
110,104 KB
testcase_20 AC 757 ms
110,100 KB
testcase_21 AC 539 ms
110,356 KB
testcase_22 AC 523 ms
110,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

class UnionFind():
    def __init__(self, n=1):
        self.par = [i for i in range(n)]
        self.rank = [0 for _ in range(n)]
        self.size = [1 for _ in range(n)]

    def find(self, x):
        if self.par[x] == x:
            return x
        else:
            self.par[x] = self.find(self.par[x])
            return self.par[x]

    def union(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x != y:
            if self.rank[x] < self.rank[y]:
                x, y = y, x
            if self.rank[x] == self.rank[y]:
                self.rank[x] += 1
            self.par[y] = x
            self.size[x] += self.size[y]

    def is_same(self, x, y):
        return self.find(x) == self.find(y)

    def get_size(self, x):
        x = self.find(x)
        return self.size[x]

N, M = map(int, input().split())
Edge = []
for i in range(M):
    a, b, w = map(int, input().split())
    Edge.append((w, a, b))
    
T = int(input())
R = list(map(int, input().split()))
RR = []
for i in range(T):
    RR.append((R[i], i))
    
RR.sort()
Edge.sort(reverse=True)
ans = [-1] * T
U = UnionFind(N)
now = N
for i in range(T):
    while Edge and Edge[-1][0] <= RR[i][0]:
        _, a, b = Edge.pop()
        if U.is_same(a, b):
            continue
        U.union(a, b)
        now -= 1
    ans[RR[i][1]] = now
    
for a in ans:
    print(a)
0