結果

問題 No.748 yuki国のお財布事情
ユーザー ikdikd
提出日時 2018-07-18 00:50:14
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 1,230 bytes
コンパイル時間 816 ms
コンパイル使用メモリ 80,944 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-04 19:10:42
合計ジャッジ時間 3,865 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
#include<numeric>
using namespace std;

#define rep(i,n) for(int i=0;i<(n);i++)

struct UnionFind{
  vector<int> par;
  UnionFind(int n){
    par.resize(n);
    rep(i, n) par[i]=i;
  }
  int find(int i){
    return par[i]==i ? par[i] : (par[i]=find(par[i]));
  }
  void unite(int i, int j){
    par[find(i)]=find(j);
  }
  bool same(int i, int j){
    return find(i)==find(j);
  }
};

using i64=long long;
struct Edge{
  int u, v;
  i64 cost;
  Edge(int u, int v, i64 c):u(u), v(v), cost(c){};
};

int main(){

  int n, m, k; cin>> n>> m>> k;

  vector<Edge> edges;
  rep(_, m){
    int a, b; i64 c;
    cin>> a>> b>> c;
    edges.push_back(Edge{a-1, b-1, c});
  }

  i64 sum=0;
  UnionFind uf(n);
  rep(_, k){
    int i; cin>> i;
    i--;
    uf.unite(edges[i].u, edges[i].v);
    sum+=edges[i].cost;
  }
  sort(edges.begin(), edges.end(), [&](const Edge &l, const Edge &r){
    return l.cost<r.cost;
  });
  for(auto e: edges){
    if(uf.same(e.u, e.v)==false){
      uf.unite(e.u, e.v);
      sum+=e.cost;
    }
  }
  
  auto tot=accumulate(edges.begin(), edges.end(), 0LL, [&](i64 res, const Edge &e){
    return res+e.cost;
  });
  cout<< tot-sum<< endl;

  return 0;
}
0