結果

問題 No.2912 0次パーシステントホモロジー
ユーザー rlangevinrlangevin
提出日時 2024-10-04 21:44:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,394 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 110,460 KB
最終ジャッジ日時 2024-10-04 21:44:34
合計ジャッジ時間 4,444 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,404 KB
testcase_01 AC 31 ms
53,920 KB
testcase_02 AC 30 ms
53,208 KB
testcase_03 AC 31 ms
53,684 KB
testcase_04 AC 32 ms
52,928 KB
testcase_05 AC 31 ms
53,360 KB
testcase_06 AC 33 ms
52,772 KB
testcase_07 AC 31 ms
52,460 KB
testcase_08 AC 31 ms
53,984 KB
testcase_09 AC 31 ms
53,508 KB
testcase_10 AC 31 ms
54,272 KB
testcase_11 AC 36 ms
53,724 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

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()
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