結果

問題 No.2912 0次パーシステントホモロジー
ユーザー miya145592miya145592
提出日時 2024-10-04 22:55:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 856 ms / 2,000 ms
コード長 1,685 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 81,980 KB
実行使用メモリ 109,868 KB
最終ジャッジ日時 2024-10-04 22:55:37
合計ジャッジ時間 6,661 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,072 KB
testcase_01 AC 48 ms
53,984 KB
testcase_02 AC 40 ms
53,332 KB
testcase_03 AC 39 ms
53,632 KB
testcase_04 AC 41 ms
53,148 KB
testcase_05 AC 40 ms
53,756 KB
testcase_06 AC 41 ms
53,028 KB
testcase_07 AC 39 ms
52,208 KB
testcase_08 AC 40 ms
53,716 KB
testcase_09 AC 40 ms
53,844 KB
testcase_10 AC 47 ms
53,612 KB
testcase_11 AC 40 ms
53,976 KB
testcase_12 AC 41 ms
52,956 KB
testcase_13 AC 41 ms
53,744 KB
testcase_14 AC 40 ms
52,852 KB
testcase_15 AC 87 ms
77,636 KB
testcase_16 AC 375 ms
93,104 KB
testcase_17 AC 321 ms
88,556 KB
testcase_18 AC 613 ms
93,792 KB
testcase_19 AC 856 ms
109,868 KB
testcase_20 AC 856 ms
109,188 KB
testcase_21 AC 644 ms
109,456 KB
testcase_22 AC 598 ms
109,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
    def __init__(self, n, w=None):
        self.par = [-1]*n
        self.rank = [0]*n
        self.siz = [1]*n
        self.cnt = n
        self.min_node = [i for i in range(n)]
        self.weight = w if w else [1]*n

    def root(self, x):
        if self.par[x] == -1:
            return x
        self.par[x] = self.root(self.par[x])
        return self.par[x]

    def issame(self, x, y):
        return self.root(x) == self.root(y)
            
    def unite(self, x, y):
        px = self.root(x)
        py = self.root(y)
        if px == py:
            return False
        if self.rank[px] < self.rank[py]:
            px, py = py, px
        self.par[py] = px
        if self.rank[px] == self.rank[py]:
            self.rank[px] += 1
        self.siz[px] += self.siz[py]
        self.cnt -= 1
        self.min_node[px] = min(self.min_node[px], self.min_node[py])
        self.weight[px] += self.weight[py]
        return False

    def count(self):
        return self.cnt

    def min(self, x):
        return self.min_node[self.root(x)]

    def getweight(self, x):
        return self.weight[self.root(x)]
    
    def size(self, x):
        return self.siz[self.root(x)]

import sys
input = sys.stdin.readline
N, M = map(int, input().split())
IJW = [list(map(int, input().split())) for _ in range(M)]
T = int(input())
R = list(map(int, input().split()))
ans = [0 for _ in range(T)]
for i in range(T):
    r = R[i]
    R[i] = [r, i]
R.sort()
IJW.sort(key=lambda x:x[2])
UF = UnionFind(N)
j = 0
for r, i in R:
    while j<M and IJW[j][2]<=r:
        u, v, _ = IJW[j]
        UF.unite(u, v)
        j+=1
    ans[i] = UF.count()
for a in ans:
    print(a)
0