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 | 31 |
Tags
- 카카오인턴
- 코딩테스트
- 식단
- 카카오
- 알고리즘
- Union-find
- BaekJoon
- 서버개발캠프
- 코테
- Smilegate
- 백준
- BFS
- 유니온파인드
- 스마일게이트
- 삼성 #코테 #2020상반기 #c++
- 중반부
- Algorithm
- c++
- LIS #Algorithm #요소추적
- 투포인터
- 보석쇼핑
- IBK기업은행 #기업은행 #디지털 #직무 #정리
- 1편
- 소감
Archives
- Today
- Total
짱아의 개발 기록장
백준 14938번. 서강 그라운드(c++) / 다익스트라 본문
반응형
플로이드 와샬로도 충분히 풀 수 있는 문제지만,,, 그냥 다익스트라를 n번 돌리는 방식으로 구현했다.
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
// 서강그라운드
#include <vector>
#include <climits>
#include <queue>
#include <iostream>
using namespace std;
int n, m, r, a, b, c;
int item[102] = {0, };
vector<pair<int, int>> v[102];
int dist[102] = {0, };
int ans = 0;
void dijkstra(int Start)
{
int visited[102] = {0, };
priority_queue<pair<int, int>, vector<pair<int, int>>, greater<pair<int, int>>> pq;
for(int i=1; i<=n; i++){
dist[i] = INT_MAX;
}
dist[Start] = 0;
pq.push(make_pair(0, Start));
while(!pq.empty()){
int cost = pq.top().first;
int x = pq.top().second;
pq.pop();
if(!visited[x]){
visited[x] = true;
for(int i=0; i<v[x].size(); i++){
if(dist[v[x][i].first]>cost+v[x][i].second){
dist[v[x][i].first] = cost+v[x][i].second;
pq.push(make_pair(dist[v[x][i].first], v[x][i].first));
}
}
}
}
}
void init()
{
for(int i=1; i<=n; i++){
dist[i] = INT_MAX;
}
}
int main()
{
cin>>n>>m>>r;
for(int i=1; i<=n; i++){
cin>>item[i];
}
for(int i=0; i<r; i++){
cin>>a>>b>>c;
v[a].push_back(make_pair(b, c));
v[b].push_back(make_pair(a, c));
}
for(int i=1; i<=n; i++){
init();
dijkstra(i);
int total = 0;
for(int j=1; j<=n; j++){
if(dist[j]<=m) total += item[j];
}
ans = max(ans, total);
}
cout<<ans<<"\n";
return 0;
}
|
cs |
반응형
'Algorithm > Baekjoon' 카테고리의 다른 글
백준 12761번. 돌다리 (c++) / BFS (0) | 2021.09.02 |
---|---|
백준 15656번. n과m(7) (c++) / 백트래킹 (0) | 2021.05.14 |
백준 5430번. AC(c++) / 투포인터 (0) | 2021.05.04 |
백준 17413번. 단어 뒤집기 2(c++) / String (0) | 2021.05.02 |
백준 20040번. 사이클 게임(c++) / 유니온파인드 (0) | 2021.04.30 |
Comments