Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- multiset
- Segment Tree
- 삼성 코딩테스트
- 언어의 온도
- 영어회화 100일의 기적
- 위상정렬
- 다이나믹 프로그래밍
- 창훈쓰다
- 비트마스크
- 평창동계올림픽
- 그리디 알고리즘
- 안드로이드 스튜디오
- MST
- 이분탐색
- 백트레킹
- DP
- 성화봉송
- lower_bound
- 인간이 그리는 무늬
- 다음 API
- boj
- upper_bound
- 다음 지도 api
- 성화봉송주자
- BOJ 2098
- 캘리그라피
- 외판원 순회
- yolo
- BFS
- 생활코딩
Archives
- Today
- Total
Hoon222y
[BOJ 6497] 전력난 본문
https://www.acmicpc.net/problem/6496497
MST를 만드는 문제이다.
총 길이에서 MST를 만든 후 그 경로의 길이를 뺴주면 절약한 길이를 얻을 수 있다.
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 | #include <iostream> #include <cstdio> #include <cstring> #include <algorithm> #include <vector> #include <stack> #include <deque> #include <queue> #include <cmath> #include <stdio.h> #define INF 1e9 typedef long long ll; using namespace std; ll ans,t,n,m,parent[211111]; vector<pair<int,pair<int,int>>> v; int find(int x){ if(x == parent[x]){ return x; }else{ return parent[x] = find(parent[x]); } } void merge(int x,int y){ x = find(x); y = find(y); parent[x] = y; } int main(){ while(1){ int n,m; cin >>m >>n; if(m == 0 && n == 0)return 0; ll tt=0; for(int i=0;i<n;i++){ int a,b,c; cin >>a >>b>>c; tt += c; v.push_back({c,{a,b}}); parent[i] = i; } sort(v.begin(),v.end()); ans = 0; for(int i=0;i<n;i++){ auto p = v[i]; int x = find(p.second.first); int y = find(p.second.second); if(x!= y){ ans += p.first; merge(p.second.first,p.second.second); } } cout << tt-ans <<endl; v.clear(); } return 0; } | cs |
'코딩 > BOJ & 알고스팟' 카테고리의 다른 글
[BOJ 2211] 네트워크 복구 (0) | 2017.08.28 |
---|---|
[BOJ 2887] 행성터널 (0) | 2017.08.28 |
[BOJ 1946] 신입 사원 (0) | 2017.08.27 |
[BOJ 2458] 키 순서 (0) | 2017.08.27 |
[BOJ 1744] 수 묶기 (0) | 2017.08.27 |
Comments