結果

問題 No.2912 0次パーシステントホモロジー
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-10-04 21:55:05
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 295 ms / 2,000 ms
コード長 1,077 bytes
コンパイル時間 6,278 ms
コンパイル使用メモリ 321,800 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-10-04 21:55:15
合計ジャッジ時間 8,729 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,632 KB
testcase_01 AC 4 ms
5,760 KB
testcase_02 AC 5 ms
5,504 KB
testcase_03 AC 4 ms
5,632 KB
testcase_04 AC 4 ms
5,504 KB
testcase_05 AC 4 ms
5,504 KB
testcase_06 AC 4 ms
5,632 KB
testcase_07 AC 4 ms
5,504 KB
testcase_08 AC 4 ms
5,632 KB
testcase_09 AC 4 ms
5,760 KB
testcase_10 AC 4 ms
5,504 KB
testcase_11 AC 4 ms
5,632 KB
testcase_12 AC 4 ms
5,632 KB
testcase_13 AC 4 ms
5,632 KB
testcase_14 AC 5 ms
5,504 KB
testcase_15 AC 24 ms
6,016 KB
testcase_16 AC 177 ms
8,448 KB
testcase_17 AC 97 ms
7,680 KB
testcase_18 AC 142 ms
8,320 KB
testcase_19 AC 293 ms
10,496 KB
testcase_20 AC 294 ms
10,624 KB
testcase_21 AC 295 ms
10,496 KB
testcase_22 AC 283 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
#define rep(i, n) for(long long i = 0; i < n; i++)
#define ALL(v) (v).begin(), (v).end()
using namespace std;

using lint = long long;

int main() {
    int n, m;
    cin >> n >> m;
    vector<vector<tuple<int, int, int>>> es(100010);
    rep(i, m) {
        int u, v, w;
        cin >> u >> v >> w;
        es[w].emplace_back(0, u, v);
    }
    int t;
    cin >> t;
    rep(i, t) {
        int r;
        cin >> r;
        es[r].emplace_back(1, i, -1);
    }
    rep(i, 100010) {
        sort(ALL(es[i]));
    }
    atcoder::dsu uf(n);
    int cnt = n;
    vector<int> ans(t);
    rep(i, 100010) {
        rep(j, (int)es[i].size()) {
            if (get<0>(es[i][j]) == 0) {
                auto [type, u, v] = es[i][j];
                if (!uf.same(u, v)) {
                    uf.merge(u, v);
                    cnt--;
                }
            } else {
                auto [type, id, hoge] = es[i][j];
                ans[id] = cnt;
            }
        }
    }
    rep(i, t) {
        cout << ans[i] << endl;
    }
}
0