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
- 그리디 알고리즘
- 문자열
- ue5
- 시뮬레이션
- 자료구조
- Team Fortress 2
- c++
- 유니온 파인드
- 스택
- DFS
- 알고리즘
- 수학
- 다익스트라
- 구현
- Unreal Engine 5
- 백준
- 백트래킹
- 다이나믹 프로그래밍
- XR Interaction Toolkit
- 누적 합
- BFS
- 유니티
- 재귀
- 우선순위 큐
- 브루트포스
- 정렬
- VR
- 투 포인터
- 트리
- 그래프
Archives
- Today
- Total
1일1알
백준 14938번 서강그라운드 C++ 본문
모든 정점을 돌면서 다익스트라를 이용해서 정점까지의 거리가 m 이하면 아이템의 개수를 더해서 아이템이 가장 많은 정점을 찾았다.
#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, r;
vector<int> Item;
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;
};
int 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 });
}
}
int ret = 0;
for (int i = 1; i <= n; i++) {
if (best[i] <= m) ret += Item[i];
}
return ret;
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n >> m >> r;
Item = vector<int>(n + 1);
graph = vector<vector<pair<int, int>>>(n + 1, vector<pair<int, int>>());
for (int i = 1; i <= n; i++) {
cin >> Item[i];
}
for (int i = 0; i < r; i++) {
int a, b, d;
cin >> a >> b >> d;
graph[a].push_back({ b,d });
graph[b].push_back({ a,d });
}
int ans = 0;
for (int i = 1; i <= n; i++) {
ans = max(ans, Dijkstra(i));
}
cout << ans;
};
'알고리즘' 카테고리의 다른 글
백준 11779번 최소비용 구하기 2 C++ (0) | 2022.06.27 |
---|---|
백준 1238번 파티 C++ (0) | 2022.06.26 |
백준 2263번 트리의 순회 C++ (0) | 2022.06.22 |
백준 1918번 후위 표기식 C++ (0) | 2022.06.21 |
백준 1167 트리의 지름 C++ (0) | 2022.06.20 |