마이 플밍 블로그

[C++] 백준 18223 - 민준이와 마산 그리고 건우 본문

문제풀이/백준

[C++] 백준 18223 - 민준이와 마산 그리고 건우

레옹 2023. 10. 9. 00:31
 

18223번: 민준이와 마산 그리고 건우

입력의 첫 번째 줄에 정점의 개수 V와 간선의 개수 E, 그리고 건우가 위치한 정점 P가 주어진다. (2 ≤ V  ≤ 5,000, 1 ≤ E ≤ 10,000, 1 ≤ P  ≤ V) 두 번째 줄부터 E개의 줄에 걸쳐 각 간선의 정보

www.acmicpc.net


풀이

다익스트라를 이용해서 푼다.

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;
}