結果

問題 No.2912 0次パーシステントホモロジー
ユーザー n0ma_run0ma_ru
提出日時 2024-10-04 21:52:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 1,886 bytes
コンパイル時間 2,111 ms
コンパイル使用メモリ 216,064 KB
実行使用メモリ 9,728 KB
最終ジャッジ日時 2024-10-04 21:52:29
合計ジャッジ時間 3,615 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 3 ms
6,820 KB
testcase_02 AC 3 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 3 ms
6,820 KB
testcase_05 AC 3 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 3 ms
6,820 KB
testcase_08 AC 3 ms
6,816 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 3 ms
6,816 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 3 ms
6,816 KB
testcase_15 AC 7 ms
6,820 KB
testcase_16 AC 45 ms
7,552 KB
testcase_17 AC 45 ms
7,712 KB
testcase_18 AC 71 ms
8,320 KB
testcase_19 AC 129 ms
9,652 KB
testcase_20 AC 131 ms
9,600 KB
testcase_21 AC 121 ms
9,600 KB
testcase_22 AC 119 ms
9,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define ALL(v) v.begin(),v.end()
#define dbg(x) cerr << #x << ": " << (x) << endl;
struct UnionFind {
	UnionFind(int n)
	: par(n), rank(n, 1) {
		iota(par.begin(), par.end(), 0);
	}
    // 頂点xの根ノード
	int root(int x) {
		if (par[x] == x) return x;
		return par[x] = root(par[x]);
	}
    // 結合
	bool unite(int x, int y) {
		x = root(x);
		y = root(y);
		if (x == y) return false;
		if (rank[x] > rank[y]) swap(x,y);
		if (rank[x] == rank[y]) ++rank[y];
		par[x] = y;
        return true;
	}
    // 頂点xと頂点yが同じ集合ならtrue
	bool same(int x, int y) {
		return root(x) == root(y);
	}
	vector<vector<int>> groups() {
        vector<vector<int>> gr(par.size());
        for (int v = 0; v < par.size(); ++v) {
            gr[root(v)].push_back(v);
        }
        
        vector<vector<int>> res;
        for (int v = 0; v < (int)par.size(); ++v) {
            if (gr[v].size()) res.push_back(gr[v]);
        }
        return res;
    }
	vector<int> par, rank;
};
int n,m;
vector<vector<pair<int,int>>> e(1e5 + 1);
int t;
vector<int> q;
int main() {
    cin >> n >> m;
    for (int i = 0; i < m; ++i) {
        int a,b,c;
        cin >> a >> b >> c;
        e[c].emplace_back(a,b);
    }
    cin >> t;
    q.resize(t);
    for (int i = 0; i < t; ++i) cin >> q[i];
    vector<int> idx(t);
    iota(ALL(idx), 0);
    sort(ALL(idx), [&](int i, int j) {
        return q[i] < q[j];
    });
    UnionFind uf(n);
    vector<int> ans(t);
    int cnt = n;
    int end = 0;
    for (int qi : idx) {
        for (int i = end; i <= q[qi]; ++i) {
            for (auto [u,v] : e[i]) {
                if (uf.unite(u,v)) {
                    --cnt;
                }
            }
        }
        end = q[qi];
        ans[qi] = cnt;
    }
    for (int i : ans) {
        cout << i << '\n';
    }
}
0