結果

問題 No.748 yuki国のお財布事情
ユーザー amesyuamesyu
提出日時 2020-06-27 10:50:25
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 2,607 bytes
コンパイル時間 1,126 ms
コンパイル使用メモリ 105,604 KB
実行使用メモリ 11,168 KB
最終ジャッジ日時 2024-07-05 08:59:21
合計ジャッジ時間 4,247 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 15 ms
5,376 KB
testcase_14 AC 27 ms
5,376 KB
testcase_15 AC 19 ms
5,376 KB
testcase_16 AC 49 ms
5,376 KB
testcase_17 AC 104 ms
9,912 KB
testcase_18 AC 116 ms
8,920 KB
testcase_19 AC 124 ms
8,448 KB
testcase_20 AC 109 ms
7,680 KB
testcase_21 AC 112 ms
9,340 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 95 ms
9,592 KB
testcase_26 AC 113 ms
11,168 KB
testcase_27 AC 110 ms
11,140 KB
testcase_28 AC 83 ms
6,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//#include <bits/stdc++.h>

#include <iostream>
#include <algorithm>
#include <vector>
#include <string>
#include <cstring>
#include <complex>
#include <stack>
#include <queue>
#include <unordered_map>
#include <map>
using namespace std;

struct UnionFind{
   vector<long long int> par; //par[i] : iの親の番号
   vector<long long int> rnk; //root[i] : iの木のランク

   //コンストラクタ
   UnionFind(long long int n): par(n), rnk(n){
       //木の初期化
       for(long long int i = 0; i < n; i++){
           par[i] = i;
           rnk[i] = 1;
       }
   }

   //データxが属する木の根を再帰で取得
   long long int root(long long int x){
       if(par[x] == x){
           return x;
       }else{
           return par[x] = root(par[x]);
       }
   }

   //xとyが同じ木に属しているかを判定
   bool same(long long int x, long long int y){
       return root(x) == root(y);
   }

   //xとyの木を併合
   void unite(long long int x, long long int y){
       long long int rx = root(x); //xの根
       long long int ry = root(y); //yの根
       if(rx == ry) return; //根が同じならそのまま

       if(rnk[rx] < rnk[ry]){
           par[rx] = ry;
       }else{
           par[ry] =rx;
           if(rnk[rx] == rnk[ry]) rnk[rx]++;
       }
   }
};

int main(){
    
    long long  i, j, n, m, k, from, to, cost, a1, a2, a3;

    cin >> n >> m >> k;
    UnionFind uf(n);

    vector<pair<long long, pair<long long , long long> > > tmp_p(m);
    vector<pair<long long, pair<long long , long long> > > p(0);
    long long used[m];
    long long sumcost = 0;
    long long ans = 0;
    for(i=0;i<m;i++) used[i] = 0;
    
    for(i=0;i<m;i++) {
        cin >> from >> to >> cost;
        tmp_p[i] = make_pair(cost, make_pair(from-1, to-1));
        sumcost += cost;
    }

    for(i=0;i<k;i++) {
        cin >> a1;
        //cout << a1 << endl;
        used[a1-1] = 1;
    }

    for(i=0;i<m;i++) {
        //scout << used[i] << endl;
        if(used[i]) {
            uf.unite(tmp_p[i].second.first, tmp_p[i].second.second);
            ans += tmp_p[i].first;
        } else {
            p.push_back(tmp_p[i]);
        }
    }

    sort(p.begin(), p.end());
    
    
    for(i=0;i<p.size();i++){
        //cost = first
        //from = second.fist
        //to   = second.second
        if(!uf.same(p[i].second.first, p[i].second.second)){
            uf.unite(p[i].second.first, p[i].second.second);
            ans += p[i].first;
        }
    }
    /*cout << sumcost << endl;
    cout << ans << endl;*/
    cout << sumcost-ans << endl;

}
0