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 | 31 |
Tags
- 탄막 이동
- 우분투
- AI Hub
- 영상 프레임 추출
- 3273
- 수 만들기
- 유니티
- 탄막
- 윈도우
- 탄막 스킬 범위
- 단어 수학
- 그리디알고리즘
- 백준
- c#
- 2020 KAKAO BLIND RECRUITMENT
- 강의실2
- 알고리즘
- 원형
- 3344
- SWEA
- 회의실 배정
- 알고리즘 목차
- 자료구조 목차
- 마우스 따라다니기
- 토글 그룹
- mysqld.sock
- 문자열 압축
- MySQL
- 걷는건귀찮아
- 18249
Archives
- Today
- Total
와이유스토리
[그래프(프림)] (CHECK) 프로그래머스 섬 연결하기 C++ 본문
https://programmers.co.kr/learn/courses/30/lessons/42861?language=cpp
#include <vector>
#include <queue>
#include <algorithm>
using namespace std;
vector<pair<int, int>> v[100];
bool visited[100];
struct cmp {
bool operator()(pair<int, int> a, pair<int, int> b) {
return a.second > b.second; // 작은 값 우선
}
};
int solution(int n, vector<vector<int>> costs) {
int answer = 0;
for(int i=0; i<costs.size(); i++) {
v[costs[i][0]].push_back({costs[i][1], costs[i][2]});
v[costs[i][1]].push_back({costs[i][0], costs[i][2]});
}
priority_queue<pair<int, int>, vector<pair<int, int>>, cmp> pq;
// 시작 정점 큐에 넣기
for(int i=0; i<v[0].size(); i++) {
pq.push({v[0][i].first, v[0][i].second});
}
visited[0] = true;
while(!pq.empty()){
int node = pq.top().first;
int cost = pq.top().second;
pq.pop();
if (!visited[node]) {
visited[node]=true;
answer += cost;
for(int i=0; i<v[node].size(); i++) {
if (!visited[v[node][i].first])
pq.push({v[node][i].first, v[node][i].second});
}
}
}
return answer;
}
'코딩테스트 > 그래프|트리' 카테고리의 다른 글
[DFS 단순 반복, BFS 반복, 크루스칼] 백준 17472 다리 만들기2 C++ (0) | 2022.01.22 |
---|---|
[DFS 백트래킹] 백준 17136 색종이 붙이기 C++ (0) | 2022.01.22 |
[그래프(크루스칼)] 프로그래머스 섬 연결하기 C++ (0) | 2022.01.22 |
[BFS 반복] 백준 16263번 아기 상어 C++ (0) | 2022.01.21 |
[DFS 순열] 프로그래머스 여행 경로 C++ (0) | 2022.01.20 |
Comments