結果

問題 No.748 yuki国のお財布事情
ユーザー Hydrogen332Hydrogen332
提出日時 2024-12-03 20:26:18
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 1,253 bytes
コンパイル時間 3,189 ms
コンパイル使用メモリ 261,564 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-12-03 20:26:24
合計ジャッジ時間 5,291 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 2 ms
6,820 KB
testcase_13 AC 7 ms
6,816 KB
testcase_14 AC 12 ms
6,820 KB
testcase_15 AC 8 ms
6,820 KB
testcase_16 AC 21 ms
6,816 KB
testcase_17 AC 41 ms
6,816 KB
testcase_18 AC 48 ms
6,816 KB
testcase_19 AC 52 ms
6,816 KB
testcase_20 AC 46 ms
6,824 KB
testcase_21 AC 44 ms
6,820 KB
testcase_22 AC 2 ms
6,816 KB
testcase_23 AC 1 ms
6,816 KB
testcase_24 AC 2 ms
6,816 KB
testcase_25 AC 38 ms
6,820 KB
testcase_26 AC 45 ms
6,816 KB
testcase_27 AC 44 ms
6,816 KB
testcase_28 AC 36 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, s, e) for (int i = (int)(s); i < (int)(e); ++i)
#define all(a) (a).begin(),(a).end()

#include <atcoder/dsu>
using namespace atcoder;

const ll INF = 1ll << 60;

int main() {
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);
    
    int N, M, K;
    cin >> N >> M >> K;
    
    if (N == 1) {
        cout << 0 << '\n';
        return 0;
    }
    
    vector<pair<ll, pair<int, int>>> E(M);
    ll ans = 0;
    rep(i, 0, M) {
        cin >> E[i].second.first >> E[i].second.second >> E[i].first;
        E[i].second.first--;
        E[i].second.second--;
        ans += E[i].first;
    }
    
    dsu uf(N);
    
    rep(i, 0, K) {
        int e;
        cin >> e;
        e--;
        
        uf.merge(E[e].second.first, E[e].second.second);
        ans -= E[e].first;
        E[e].first = INF;
    }
    
    sort(all(E));
    
    while (true) {
        if (E.back().first == INF) E.pop_back();
        else break;
    }
    
    rep(i, 0, E.size()) {
        if (!uf.same(E[i].second.first, E[i].second.second)) {
            uf.merge(E[i].second.first, E[i].second.second);
            ans -= E[i].first;
        }
    }
    
    cout << ans << '\n';
}
0