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
- const
- 팰린드롬 만들기
- 2294
- GeeksForGeeks
- RootMotion
- Programmers
- softeer
- 백준
- NRVO
- Unreal Engine5
- 오블완
- 1563
- DirectX11
- algorithm
- 언리얼엔진5
- UnrealEngine4
- IFileDialog
- UnrealEngine5
- DeferredRendering
- 프로그래머스
- baekjoon
- UE5
- RVO
- Frustum
- winapi
- C
- C++
- directx
- 티스토리챌린지
- 줄 세우기
Archives
- Today
- Total
Game Develop
[Algorithm]Baekjoon 17182번 :: 우주 탐사선 본문
https://www.acmicpc.net/problem/17182
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
|
int n, k;
int adjMatrix[11][11];
int main(void)
{
ios_base::sync_with_stdio(0);
cin.tie(0);
cin >> n >> k;
vector<int> v;
for (int i = 0; i < n; ++i)
{
v.push_back(i);
}
memset(adjMatrix, 0x3f, sizeof(adjMatrix));
for (int i = 0; i < n; ++i)
{
for (int j = 0; j < n; ++j)
{
cin >> adjMatrix[i][j];
}
}
for (int k = 0; k < n; ++k)
{
for (int i = 0; i < n; ++i)
{
if (adjMatrix[i][k] != 0x3f3f3f3f)
{
for (int j = 0; j < n; ++j)
{
if (adjMatrix[i][k] + adjMatrix[k][j] < adjMatrix[i][j])
{
adjMatrix[i][j] = adjMatrix[i][k] + adjMatrix[k][j];
}
}
}
}
}
int answer = 0x3f3f3f3f;
do
{
if (v[0] != k) continue;
int sum = 0;
for (int i = 1; i < v.size(); ++i)
{
sum += adjMatrix[v[i - 1]][v[i]];
}
answer = min(answer, sum);
} while (next_permutation(v.begin(), v.end()));
cout << answer;
return 0;
}
|
cs |
플로이드와샬을 이용해 각 노드간의 최단거리를 먼저 구했고, 그 후에 출발위치를 기점으로 방문할 수 있는 모든 경우의 수를 이용해서 최솟값을 구하였다.
모든 경우의 수를 구하는 것에는 next_permutation을 사용했다. 사실 이전까지는 DFS로 가짓수 뽑아서 하기도 했는데, 사용법이 너무 편리해서 나도 이제 next_permutation을 사용할 것 같다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm]Baekjoon 16918번 :: 봄버맨 (0) | 2023.05.10 |
---|---|
[Algorithm]Baekjoon 3109번 :: 빵집 (0) | 2023.05.09 |
[Algorithm]Baekjoon 14466번 :: 소가 길을 건너간 이유 6 (0) | 2023.05.09 |
[Algorithm]Baekjoon 1800번 :: 인터넷 설치 (0) | 2023.05.09 |
[Algorithm] Baekjoon 18500번 : 미네랄 2 (0) | 2023.05.06 |