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
- DirectX11
- RootMotion
- 줄 세우기
- const
- UnrealEngine4
- 백준
- directx
- RVO
- algorithm
- 1563
- Frustum
- 팰린드롬 만들기
- 티스토리챌린지
- C
- GeeksForGeeks
- NRVO
- 2294
- winapi
- DeferredRendering
- UnrealEngine5
- 언리얼엔진5
- baekjoon
- 오블완
- C++
- softeer
- Unreal Engine5
- UE5
- 프로그래머스
- IFileDialog
- Programmers
Archives
- Today
- Total
Game Develop
[Algorithm] Programmers :: 부대복귀 본문
https://school.programmers.co.kr/learn/courses/30/lessons/132266
다익스트라 풀이 및 시간
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
|
struct Node
{
int vertex;
int distance;
};
struct cmp
{
bool operator() (Node& a, Node& b)
{
return a.distance > b.distance;
}
};
int dist[100001];
vector<vector<Node>> graph(100001);
vector<int> solution(int n, vector<vector<int>> roads, vector<int> sources, int destination)
{
vector<int> answer;
memset(dist, 0x3f, sizeof(dist));
for (int i = 0; i < roads.size(); ++i)
{
int a = roads[i][0];
int b = roads[i][1];
graph[a].push_back({ b,1 });
graph[b].push_back({ a,1 });
}
dist[destination] = 0; // 출발
priority_queue<Node, vector<Node>, cmp> pq;
pq.push({ destination,0 });
while (!pq.empty())
{
int curVertex = pq.top().vertex;
int curDistance = pq.top().distance;
pq.pop();
if (dist[curVertex] < curDistance) continue;
for (int i = 0; i < graph[curVertex].size(); ++i)
{
int nextVertex = graph[curVertex][i].vertex;
int nextDistance = graph[curVertex][i].distance;
if (curDistance + nextDistance < dist[nextVertex])
{
dist[nextVertex] = curDistance + nextDistance;
pq.push({ nextVertex,curDistance + nextDistance });
}
}
}
for (int i = 0; i < sources.size(); ++i)
{
if (dist[sources[i]] == 0x3f3f3f3f) answer.push_back(-1);
else answer.push_back(dist[sources[i]]);
}
return answer;
}
|
cs |
그냥 문제를 직관적으로 봤을때는 각 부대원의 위치에서 목표위치까지의 최단거리를 구해야하니 부대원명수 만큼 최단거리를 구하는 로직(다익이든,BFS든)을 수행해야할 것 같지만, 사실 목표위치가 정해져있기 때문에 목표위치를 시작으로 각 정점에 대해 최단거리를 구하는 로직을 한번만 수행하면 된다.
그것 말고는 특별할 게 없는 문제.
'Algorithm > Programmers' 카테고리의 다른 글
[Algorithm] Programmers :: 숫자 타자 대회 (0) | 2023.09.02 |
---|---|
[Algorithm] Programmers :: 등대 (0) | 2023.08.31 |
[Algorithm] Programmers :: 2차원 동전 뒤집기 (0) | 2023.08.28 |
[Algorithm] Programmers :: 고고학 최고의 발견 (0) | 2023.08.24 |
[Algorithm] Programmers :: 파괴되지 않은 건물 (0) | 2023.08.23 |