結果

問題 No.748 yuki国のお財布事情
ユーザー kkey000kkey000
提出日時 2024-06-15 10:31:23
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 1,362 bytes
コンパイル時間 1,278 ms
コンパイル使用メモリ 103,452 KB
実行使用メモリ 5,580 KB
最終ジャッジ日時 2024-06-15 10:31:28
合計ジャッジ時間 4,407 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 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 2 ms
5,376 KB
testcase_13 AC 16 ms
5,376 KB
testcase_14 AC 28 ms
5,376 KB
testcase_15 AC 19 ms
5,376 KB
testcase_16 AC 55 ms
5,376 KB
testcase_17 AC 106 ms
5,452 KB
testcase_18 AC 124 ms
5,452 KB
testcase_19 AC 140 ms
5,452 KB
testcase_20 AC 128 ms
5,580 KB
testcase_21 AC 118 ms
5,576 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 94 ms
5,580 KB
testcase_26 AC 115 ms
5,448 KB
testcase_27 AC 113 ms
5,580 KB
testcase_28 AC 109 ms
5,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#include <string>
#include <cstring>
#include <complex>
#include <stack>
#include <queue>
#include <unordered_map>
#include <map>

using namespace std ;

int par[100002];

void init(int n){
   for(int i = 0; i < n; i++){
       par[i] = i;
   }
}

int root(int x){
   if(par[x] == x){
       return x;
   }else{
       return par[x] = root(par[x]);
   }
}

bool same(int x, int y){
   return root(x) == root(y);
}


void unite(int x, int y){
   int rx = root(x); 
   int ry = root(y); 
   if(rx == ry) return; 

   par[rx] = ry; 
}
int main(){
    int N,M,K;
    cin >> N >> M >> K; 
    vector <pair<long long int,pair<int,int>>> r;


    long long int maxcost = 0;
    for(int i = 0; i < M; i++){
        int a,b,c;
        cin >> a >> b >> c;
        r.push_back(make_pair(c,make_pair(a,b)));
        maxcost += c;

    }
    init(N);
    long long int cost = 0;
    for(int i = 0; i < K; i++){
        int e;
        cin >> e;
        unite(r[e-1].second.first,r[e-1].second.second);
        cost += r[e-1].first;
    }
    sort(r.begin(), r.end());

    for(int i = 0; i < M; i++){
        if(!same(r[i].second.first,r[i].second.second)){
            unite(r[i].second.first,r[i].second.second);

            cost += r[i].first;
        }
    }
    cout << maxcost - cost << endl;


    return 0;
}
0