Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- hackerrank
- 잠실
- dynamic programming
- 동적 계획법
- 백트래킹
- koitp
- 해커랭크
- 구현
- sw expert academy
- 알고리즘
- 에라토스테네스의 체
- SWEA
- Algorithm
- 그리디
- C++
- DP
- dfs
- 삼성 기출
- 백준
- 브루트포스
- PS
- 완전탐색
- 소수
- 삼성 SDS 대학생 알고리즘 특강
- BFS
- 다이나믹 프로그래밍
- 스택
- 맛집
- BOJ
- 시뮬레이션
Archives
- Today
- Total
펭로그
[C++] HackerRank 해커랭크 Roads and Libraries 본문
문제링크 : https://www.hackerrank.com/challenges/torque-and-development
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 | #include <bits/stdc++.h> using namespace std; vector<int> p; int f(int a) { return p[a] == a ? a : p[a] = f(p[a]); } void u(int a, int b) { p[f(a)] = f(b); } int main() { int T; cin >> T; while (T--) { int N, M, a, b; long long c, d; cin >> N >> M >> c >> d; p.clear(); p.resize(N); iota(p.begin(), p.end(), 0); while (M--) { cin >> a >> b; --a, --b; u(a, b); } int comp = 0; for (int i = 0; i<N; ++i) { if (p[i] == i)++comp; } cout << (comp*c + (N - comp)*min(c, d)) << "\n"; } return 0; } | cs |
'Study > PS(Algorithm)' 카테고리의 다른 글
[C++] 삼성 SDS KOITP 쉬어가는페이지 (1) | 2018.07.19 |
---|---|
[C++] 백준 BOJ 2839 설탕배달 (0) | 2018.07.13 |
[C++] HackerRank 해커랭크 Counter game (0) | 2018.04.10 |
[C++] HackerRank 해커랭크 Tower Breakers (0) | 2018.03.24 |
[C++] HackerRank 해커랭크 Sansa and XOR (0) | 2018.03.22 |
Comments