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
- 다이나믹 프로그래밍
- 트리
- XR Interaction Toolkit
- 문자열
- 유니온 파인드
- 스택
- 누적 합
- c++
- 백트래킹
- 우선순위 큐
- 그래프
- Team Fortress 2
- DFS
- 시뮬레이션
- 투 포인터
- 유니티
- 구현
- 재귀
- 정렬
- 다익스트라
- ue5
- Unreal Engine 5
- VR
- 백준
- BFS
- 자료구조
- 브루트포스
- 알고리즘
- 그리디 알고리즘
- 수학
Archives
- Today
- Total
1일1알
백준 10282번 해킹 C++ 본문
다익스트라를 이용해서 풀었다.
#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>
#include <bitset>
using namespace std;
using int64 = long long;
struct VertexCost;
vector<vector<VertexCost>> vertexs;
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 Dijikstra(int start, int n) {
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();
if (curr.cost > best[curr.vertex])
continue;
for (auto a : vertexs[curr.vertex]) {
int nextCost = curr.cost + a.cost;
if (nextCost >= best[a.vertex])
continue;
best[a.vertex] = nextCost;
pq.push({ a.vertex,nextCost });
}
}
int cnt = 0;
int ans = 0;
for (int i = 1; i <= n; i++) {
if (best[i] == INT_MAX) continue;
cnt++;
ans = max(ans, best[i]);
}
cout << cnt << " " << ans << "\n";
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int t;
cin >> t;
while (t--) {
int n, d, c;
cin >> n >> d >> c;
vertexs = vector<vector<VertexCost>>(n + 1, vector<VertexCost>());
for (int i = 0; i < d; i++) {
int a, b, s;
cin >> a >> b >> s;
vertexs[b].push_back({ a,s });
}
Dijikstra(c, n);
}
}
'알고리즘' 카테고리의 다른 글
백준 16562번 친구비 C++ (0) | 2022.08.31 |
---|---|
백준 6497번 전력난 C++ (0) | 2022.08.30 |
백준 17836번 공주님을 구해라! C++ (0) | 2022.08.28 |
백준 2665번 미로만들기 C++ (0) | 2022.08.26 |
백준 16637번 괄호 추가하기 C++ (0) | 2022.08.23 |