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
- 수학
- GJK
- Doubly Connected Edge List
- 외적
- 리눅스
- 보로노이다이어그램
- 분할축 이론
- AABB
- Vector
- c#
- ubuntu
- uclidean algorithm
- 내적
- Expanding Polytope Algorithm
- 다이나믹 프로그래밍
- 우분투
- 충돌 알고리즘
- dp
- 알고리즘
- Graham Scan
- PS
- 문제풀이
- 벡터
- Unity
- SOH
- C
- 유니티
- linux
- 백준
- C++
Archives
- Today
- Total
마이 플밍 블로그
[C++] 백준 1504 - 특정한 최단 경로 본문
풀이
1. 첫노드→N1 로가는 짧은경로 + N1 → N2로가는 경로 + N2에서 n번째노드로 가는 경로
2. 첫노드→N2 로가는 짧은경로 + N2 → N1로가는 경로 + N1에서 n번째노드로 가는 경로
둘중 짧은 것이 답이다.
코드
#include <bits/stdc++.h>
using namespace std;
vector<pair<int,int>> adj[801];
int n,e;
int v1,v2;
int Dijkstra(int src, int nend){
vector<int> dist(801, 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;
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));
}
cin >> v1 >> v2;
int answer = 100000000;
answer = min(answer, Dijkstra(1,v1) + Dijkstra(v1,v2) + Dijkstra(v2,n));
answer = min(answer, Dijkstra(1,v2) + Dijkstra(v2,v1) + Dijkstra(v1,n));
if(answer != 100000000)
cout << answer;
else
cout << -1;
return 0;
}
'문제풀이 > 백준' 카테고리의 다른 글
[C++] 백준 1261 - 알고스팟 (0) | 2023.10.30 |
---|---|
[C++] 백준 18223 - 민준이와 마산 그리고 건우 (1) | 2023.10.09 |
[C++] 백준 11779 - 최소비용 구하기 2 (1) | 2023.10.08 |
[C++] 백준 2234 - 성곽 (1) | 2023.10.07 |
[C++] 백준 14442 - 벽 부수고 이동하기 2 (1) | 2023.10.07 |