-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path트리의 지름.cpp
61 lines (51 loc) · 1.07 KB
/
트리의 지름.cpp
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
#include <iostream>
#include <vector>
#include <string.h>
using namespace std;
struct node
{
int to; // 여기까지의
int distance; // 거리
};
vector<node> vec[100001];
bool check[100001];
int v;
int cur, target_node, dist; // 순서대로 현재 노드, 현재 노드와의 거리를 나타내는 노드, 둘 사이의 거리
int farthest_node; // 임의의 노드에서 가장 먼 노드
int farthest_distance; // 임의의 노드에서 가장 먼 거리 겸 지름으로 사용할 변수
void DFS(int x, int dist)
{
if (check[x])
return;
if (farthest_distance < dist)
{
farthest_distance = dist;
farthest_node = x;
}
check[x] = true;
for (int i = 0; i < vec[x].size(); ++i)
{
int y = vec[x][i].to;
DFS(y, dist + vec[x][i].distance);
}
}
int main()
{
cin >> v;
for (int i = 0; i < v; ++i)
{
cin >> cur;
cin >> target_node;
while (target_node != -1)
{
cin >> dist;
vec[cur].push_back({ target_node, dist });
cin >> target_node;
}
}
DFS(1, 0); // 임의의 노드를 시작으로 해서 가장 먼 노드를 조사한다
memset(check, 0, sizeof(check));
DFS(farthest_node, 0);
cout << farthest_distance << endl;
return 0;
}