結果
問題 | No.748 yuki国のお財布事情 |
ユーザー | どらら |
提出日時 | 2018-10-19 22:07:31 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 135 ms / 2,000 ms |
コード長 | 1,534 bytes |
コンパイル時間 | 1,940 ms |
コンパイル使用メモリ | 180,000 KB |
実行使用メモリ | 11,856 KB |
最終ジャッジ日時 | 2024-11-18 20:47:55 |
合計ジャッジ時間 | 4,269 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 26 |
ソースコード
#include <bits/stdc++.h> using namespace std; #define REP(i,a,n) for(int i=(a); i<(int)(n); i++) #define rep(i,n) REP(i,0,n) #define FOR(it,c) for(__typeof((c).begin()) it=(c).begin(); it!=(c).end(); ++it) #define ALLOF(c) (c).begin(), (c).end() typedef long long ll; typedef unsigned long long ull; class UnionFind{ int n; vector<int> data; public: UnionFind(int _n):n(_n),data(_n,-1){} bool link(int a, int b){ int ra=find_root(a); int rb=find_root(b); if(ra!=rb){ if(data[rb]<data[ra]) swap(ra,rb); data[ra]+=data[rb]; data[rb]=ra; } return (ra!=rb); } bool check(int a, int b){ return (find_root(a)==find_root(b)); } int find_root(int a){ return ((data[a]<0)?a:(data[a]=find_root(data[a]))); } }; struct ST { int a, b, c; }; bool operator<(const ST& a, const ST& b){ return a.c > b.c; } int main(){ int N, M, K; cin >> N >> M >> K; vector<vector<int>> edges; rep(i,M){ int a, b, c; cin >> a >> b >> c; a--; b--; edges.push_back({a,b,c}); } UnionFind uf(N); ll ret = 0; rep(i,K){ int e; cin >> e; e--; uf.link(edges[e][0], edges[e][1]); edges[e][0] = -1; } priority_queue<ST> que; rep(i,edges.size()){ if(edges[i][0] == -1) continue; que.push((ST){edges[i][0], edges[i][1], edges[i][2]}); } while(!que.empty()){ ST st = que.top(); que.pop(); if(uf.check(st.a, st.b)){ ret += st.c; }else{ uf.link(st.a, st.b); } } cout << ret << endl; return 0; }