-
Notifications
You must be signed in to change notification settings - Fork 557
/
1167.cpp
46 lines (44 loc) · 986 Bytes
/
1167.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
// Authored by : heheHwang
// Co-authored by : -
// http://boj.kr/a4cea38652dc4846a1d223599044dfeb
#include <bits/stdc++.h>
using namespace std;
const int MXN = 100'010;
bool vis[MXN];
int V, p, q, c, mxCost, mxNode;
vector<pair<int, int>> adj[MXN];
void dfs(int cur, int cost) {
if (mxCost < cost) {
mxNode = cur;
mxCost = cost;
}
for (auto [nxtCost, nxt] : adj[cur]) {
if (vis[nxt]) continue;
vis[nxt] = true;
dfs(nxt, cost + nxtCost);
}
}
int main(void) {
ios::sync_with_stdio(0);
cin.tie(0);
cin >> V;
for (int i = 0; i < V; i++) {
cin >> p;
while (1) {
cin >> q;
if (q == -1) break;
cin >> c;
adj[p].push_back({c, q});
}
}
vis[1] = true;
dfs(1, 0);
fill(vis, vis + MXN, false);
vis[mxNode] = true;
dfs(mxNode, 0);
cout << mxCost;
}
/*
트리의 지름을 찾으려면 아무 한 점에서 제일 멀리 간 다음,
그 점에서 제일 멀리 있는 점까지의 거리를 재면 됩니다.
*/