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
- 프로그래머스
- 백준
- 언리얼엔진5
- Frustum
- UnrealEngine5
- DeferredRendering
- const
- softeer
- algorithm
- UE5
- DirectX11
- Unreal Engine5
- 오블완
- directx
- GeeksForGeeks
- UnrealEngine4
- 팰린드롬 만들기
- RVO
- 티스토리챌린지
- 줄 세우기
- baekjoon
- NRVO
- C
- 2294
- 1563
- IFileDialog
- winapi
- C++
- Programmers
- RootMotion
Archives
- Today
- Total
Game Develop
[Algorithm]Baekjoon 1916번 :: 최소비용 구하기 본문
https://www.acmicpc.net/problem/1916
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
74
75
76
77
|
struct Node
{
int city;
int distance;
};
struct cmp
{
bool operator() (const Node& a, const Node& b)
{
return a.distance > b.distance;
}
};
int n, m;
int start, dest;
vector<vector<Node>> graph;
int dist[1001];
void dij()
{
int result = 0;
dist[start] = 0;
priority_queue<Node,vector<Node>, cmp> pq;
pq.push({ start,0 });
while (!pq.empty())
{
Node curNode = pq.top();
pq.pop();
int city = curNode.city;
int distance = curNode.distance;
if (distance > dist[city]) continue;
for (int i = 0; i < graph[city].size(); i++)
{
int nextCity = graph[city][i].city;
int nextDistance = distance + graph[city][i].distance;
if (nextDistance < dist[nextCity])
{
dist[nextCity] = nextDistance;
pq.push({ nextCity,nextDistance });
}
}
}
cout << dist[dest];
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int a, b, c;
memset(dist, 0x3f, sizeof(dist));
cin >> n >> m;
graph.resize(n + 1);
for (int i = 0; i < m; i++)
{
cin >> a >> b >> c;
graph[a].push_back({ b,c });
}
cin >> start >> dest;
dij();
}
|
cs |
다익스트라의 기본문제이다.
오랜만에 다시 풀고나니, 다익스트라에 대한 로직,코드가 완전히 머리에 박힌 느낌이다.
while문 안에 if (distance > dist[city]) continue;
라는 코드같은 경우, 이미 다른 노드를 작업하는 과정에서 배열에 최단거리가 업데이트가 되어있을 수 있기 때문이다.
그런 경우에는 굳이 작업을 수행할 필요가 없기 때문에 바로 continue하는것이다.
물론 없어도 답은 구해지지만, 이번 문제같은 경우에는 시간제한이 상당히 짧기 때문에 저 코드가 없다면 시간초과가 발생하기 때문에 반드시 검사해줘야 한다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm]Baekjoon 5639번 :: 이진 검색 트리 (0) | 2022.12.07 |
---|---|
[Algorithm]Baekjoon 2096번 :: 내려가기 (0) | 2022.12.06 |
[Algorithm] Baekjoon 11660번 : 구간 합 구하기 5 (0) | 2022.12.05 |
[Algorithm] Baekjoon 9465번 : 스티커 (0) | 2022.12.05 |
[Algorithm] Baekjoon 1991번 : 트리 순회 (0) | 2022.12.05 |