結果

問題 No.2912 0次パーシステントホモロジー
ユーザー GOTKAKOGOTKAKO
提出日時 2024-10-04 22:03:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 171 ms / 2,000 ms
コード長 1,425 bytes
コンパイル時間 2,675 ms
コンパイル使用メモリ 218,444 KB
実行使用メモリ 9,600 KB
最終ジャッジ日時 2024-10-04 22:03:12
合計ジャッジ時間 4,142 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 4 ms
6,820 KB
testcase_02 AC 3 ms
6,816 KB
testcase_03 AC 3 ms
6,820 KB
testcase_04 AC 3 ms
6,816 KB
testcase_05 AC 4 ms
6,820 KB
testcase_06 AC 3 ms
6,816 KB
testcase_07 AC 3 ms
6,820 KB
testcase_08 AC 3 ms
6,816 KB
testcase_09 AC 3 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 3 ms
6,820 KB
testcase_12 AC 3 ms
6,820 KB
testcase_13 AC 3 ms
6,820 KB
testcase_14 AC 3 ms
6,820 KB
testcase_15 AC 18 ms
6,820 KB
testcase_16 AC 132 ms
7,424 KB
testcase_17 AC 53 ms
7,680 KB
testcase_18 AC 77 ms
8,192 KB
testcase_19 AC 171 ms
9,472 KB
testcase_20 AC 169 ms
9,472 KB
testcase_21 AC 165 ms
9,600 KB
testcase_22 AC 163 ms
9,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

class UnionFind{
    public:
    vector<int> par,siz;
 
    void make(int N){
        par.resize(N,-1);
        siz.resize(N,1);
    }
 
    int root(int x){
        if(par.at(x) == -1) return x;
        else return par.at(x) = root(par.at(x));
    }
 
    void unite(int u, int v){
        u = root(u),v = root(v);
        if(u == v) return;
        if(siz.at(u) < siz.at(v)) swap(u,v);
 
        par.at(v) = u;
        siz.at(u) += siz.at(v);
    }
 
    bool issame(int u, int v){
        if(root(u) == root(v)) return true;
        else return false;
    }
};

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);

    int N,M; cin >> N >> M;
    vector<vector<pair<int,int>>> Rs(100001);
    for(int i=0; i<M; i++){
        int u,v,w; cin >> u >> v >> w;
        Rs.at(w).push_back({u,v});
    }
    int T; cin >> T;
    vector<pair<int,int>> Ts(T);
    for(int i=0; i<T; i++) cin >> Ts.at(i).first,Ts.at(i).second = i;
    sort(Ts.begin(),Ts.end());
    vector<int> answer(T);

    int ans = N,nowr = 0;
    UnionFind Z; Z.make(N);
    for(auto [r,pos] : Ts){
        while(nowr <= r){
            for(auto [u,v] : Rs.at(nowr)){
                if(Z.issame(u,v)) continue;
                ans--;
                Z.unite(u,v);
            }
            nowr++;
        }
        answer.at(pos) = ans;
    } 
    for(auto a : answer) cout << a << endl;
}
0