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
- 수학
- 보로노이다이어그램
- uclidean algorithm
- 충돌 알고리즘
- 유니티
- GJK
- Vector
- linux
- AABB
- Doubly Connected Edge List
- 우분투
- Unity
- PS
- 다이나믹 프로그래밍
- 알고리즘
- C
- 벡터
- SOH
- ubuntu
- C++
- dp
- 외적
- 분할축 이론
- Graham Scan
- 문제풀이
- c#
- 리눅스
- 백준
- 내적
- Expanding Polytope Algorithm
Archives
- Today
- Total
마이 플밍 블로그
[C++] 백준 18223 - 민준이와 마산 그리고 건우 본문
풀이
다익스트라를 이용해서 푼다.
1→P→N 순으로 가는 최단거리가 1→N 최단거리보다 작거나 같으면 SAVE HIM을 아니면 GOOD BYE를 출력한다
코드
#include <bits/stdc++.h>
#define V 5001
using namespace std;
vector<pair<int,int>> adj[V];
int n,e,p;
int Dijkstra(int src, int nend){
vector<int> dist(V, 100000000);
dist[src] = 0;
priority_queue<pair<int,int>> q;
q.push(make_pair(0,src));
while(!q.empty()){
int cost = -q.top().first;
int node = q.top().second;
q.pop();
if(dist[node] < cost) continue;
for(int i = 0; i < adj[node].size(); i++){
int nextNode = adj[node][i].first;
int nextCost = adj[node][i].second + cost;
if(dist[nextNode] > nextCost){
dist[nextNode] = nextCost;
q.push(make_pair(-nextCost, nextNode));
}
}
}
return dist[nend];
}
int main()
{
ios_base::sync_with_stdio(0); cin.tie(0);
cin >> n >> e >> p;
int b,nb,c;
for(int i =0 ; i < e; i++){
cin >> b >> nb >> c;
adj[b].push_back(make_pair(nb,c));
adj[nb].push_back(make_pair(b,c));
}
int a1 = Dijkstra(1,n);
int a2 = Dijkstra(1,p) + Dijkstra(p,n);
if(a1 == a2){
cout << "SAVE HIM";
}
else if(a1 < a2){
cout << "GOOD BYE";
}
else if (a1 > a2){
cout << "SAVE HIM";
}
return 0;
}
'문제풀이 > 백준' 카테고리의 다른 글
[C++] 백준 1261 - 알고스팟 (0) | 2023.10.30 |
---|---|
[C++] 백준 1504 - 특정한 최단 경로 (1) | 2023.10.09 |
[C++] 백준 11779 - 최소비용 구하기 2 (1) | 2023.10.08 |
[C++] 백준 2234 - 성곽 (1) | 2023.10.07 |
[C++] 백준 14442 - 벽 부수고 이동하기 2 (1) | 2023.10.07 |