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
- 자료구조
- 누적 합
- 그리디 알고리즘
- 스택
- 유니온 파인드
- BFS
- Team Fortress 2
- ue5
- 수학
- 브루트포스
- c++
- 백준
- DFS
- 유니티
- 그래프
- VR
- 다이나믹 프로그래밍
- 백트래킹
- 정렬
- 재귀
- 우선순위 큐
- 알고리즘
- 트리
- 문자열
- 구현
- 시뮬레이션
- 다익스트라
- 투 포인터
- XR Interaction Toolkit
- Unreal Engine 5
Archives
- Today
- Total
1일1알
백준 1238번 파티 C++ 본문
다익스트라를 모든 점에서 돌리면서 각 점에서의 최단 거리를 저장해놓고 [n][x] + [x][n]중 가장 큰 값을 찾아서 출력하였다.
#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <map>
#include <list>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
#include <limits.h>
using namespace std;
using int64 = long long;
int n, m, x;
vector<vector<int>> dist;
vector<vector<pair<int, int>>> graph;
struct VertexCost {
bool operator<(const VertexCost& other) const {
return cost < other.cost;
}
bool operator>(const VertexCost& other) const {
return cost > other.cost;
}
int vertex;
int cost;
};
void Dijkstra(int start) {
vector<int> best(n + 1, INT_MAX);
priority_queue<VertexCost, vector<VertexCost>, greater<VertexCost>> pq;
pq.push({ start,0 });
best[start] = 0;
while (!pq.empty()) {
auto curr = pq.top();
pq.pop();
int vertex = curr.vertex;
int cost = curr.cost;
if (cost > best[vertex])
continue;
for (auto next : graph[vertex]) {
int nextCost = cost + next.second;
if (nextCost >= best[next.first])
continue;
best[next.first] = nextCost;
pq.push({ next.first,nextCost });
}
}
for (int i = 1; i <= n; i++) {
dist[start][i] = best[i];
}
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n >> m >> x;
graph = vector<vector<pair<int, int>>>(n + 1, vector<pair<int, int>>());
dist = vector<vector<int>>(n + 1, vector<int>(n + 1));
for (int i = 0; i < m; i++) {
int a, b, d;
cin >> a >> b >> d;
graph[a].push_back({ b,d });
}
for (int i = 1; i <= n; i++) {
Dijkstra(i);
}
int maxDist = 0;
for (int i = 1; i <= n; i++) {
int sum = dist[i][x] + dist[x][i];
maxDist = max(maxDist, sum);
}
cout << maxDist;
};
'알고리즘' 카테고리의 다른 글
백준 2638번 치즈 C++ (0) | 2022.06.28 |
---|---|
백준 11779번 최소비용 구하기 2 C++ (0) | 2022.06.27 |
백준 14938번 서강그라운드 C++ (0) | 2022.06.25 |
백준 2263번 트리의 순회 C++ (0) | 2022.06.22 |
백준 1918번 후위 표기식 C++ (0) | 2022.06.21 |