티스토리 뷰
백준 소스코드 [C++] 10423 전기가 부족해
#include <iostream>
#include <algorithm>
#include <queue>
#include <string.h>
#include <limits.h>
#include <vector>
#include <math.h>
#include <stack>
#include <bitset>
#include <string>
#include <set>
#include <map>
#include <unordered_map>
#include <sstream>
#include <cstdlib>
#define all(v) v.begin(), v.end()
#define pii pair<int, int>
#define make_unique(v) v.erase(unique(v.begin(), v.end()), v.end())
typedef long long ll;
using namespace std;
int V, E,K, u, v, w;
struct Edge {
int cost, node[2];
Edge(int cost,int u,int v) {
this->cost = cost;
this->node[0] = u;
this->node[1] = v;
}
bool operator<(Edge e) {
return this->cost < e.cost;
}
};
vector<Edge> edge;
vector <int> Parent, Rank, station;
int findParent(int u)
{
if (Parent[u] == u) return u;
return Parent[u] = findParent(Parent[u]);
}
void mergeParent(int u, int v)
{
u = findParent(u);
v = findParent(v);
if (u == v)return;
if (Rank[u] > Rank[v]) swap(u, v);
Parent[u] = v;
if (Rank[u] == Rank[v]) Rank[v]++;
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cin >> V>> E>>K;
Rank.resize(V+1, 1);
Parent.resize(V+1);
station.resize(K);
for (int i = 1;i <= V;i++)Parent[i] = i;
for (int i = 0;i < K;i++) {
cin >> station[i];
if (i!=0) mergeParent(station[0], station[i]);
}
for (int i = 0;i < E;i++) {
cin >> u >> v >> w;
edge.push_back(Edge(w, u, v));
}
sort(all(edge));
int res = 0;
for (int i = 0;i < (int)edge.size();i++) {
int cost = edge[i].cost;
int L = edge[i].node[0];
int R = edge[i].node[1];
if (findParent(L) == findParent(R))continue;
else {
mergeParent(L, R);
res += cost;
}
}
cout<< res;
return 0;
}
'백준' 카테고리의 다른 글
백준 소스코드 [C++] 14167 Moocast (0) | 2021.03.28 |
---|---|
백준 소스코드 [C++] 2887 행성 터널 (0) | 2021.03.28 |
백준 소스코드 [C++] 10840 구간 성분 (0) | 2021.03.13 |
백준 소스코드 [C++] 6086 최대 유량 (0) | 2021.03.12 |
백준 소스코드 [C++] 10775 공항 (0) | 2021.03.10 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- 벨만포드 시간복잡도
- 최단경로 문제
- 다익스트라 시간복잡도
- 코딩대회
- HIG
- MeTal
- WWDC21
- 최단경로문제
- 부스트캠프 6기
- test coverage
- CPU와 Memory
- 포드 풀커슨 알고리즘
- 최대 매칭
- observeOn
- 에드몬드 카프 알고리즘
- CompositionalLayout
- 강한 순환 참조
- mach-o
- WWDC16
- Testable
- 최단경로 알고리즘
- 컴퓨터 추상화
- State Restoration
- WWDC19
- WWDC17
- 네트워크 유량
- IOS
- 네트워크 플로우
- 벨만포드 알고리즘
- rxswift
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함