测评会员优惠活动进行中 · 开通 VIP,有效期内测评不限次 VIP 优惠中 · 测评不限次 立即查看

A15294. Journey

编程题 普及/提高-

题目描述

One day, Pak Chanek who is already bored of being alone at home decided to go traveling. While looking for an appropriate place, he found that Londonesia has an interesting structure.

According to the information gathered by Pak Chanek, there are $N$ cities numbered from $1$ to $N$ . The cities are connected to each other with $N-1$ two-directional roads, with the $i$ -th road connecting cities $U_i$ and $V_i$ , and taking a time of $W_i$ hours to be traversed. In other words, Londonesia's structure forms a tree.

Pak Chanek wants to go on a journey in Londonesia starting and ending in any city (not necessarily the same city) such that each city is visited at least once with the least time possible. In order for the journey to end quicker, Pak Chanek also carries an instant teleportation device for moving from one city to any city that can only be used at most once. Help Pak Chanek for finding the minimum time needed.

Notes:

- Pak Chanek only needs to visit each city at least once. Pak Chanek does not have to traverse each road.
- In the journey, a city or a road can be visited more than once.

输入格式

The first line contains a single integer $N$ ( $1 \le N \le 10^5$ ) — the number of cities in Londonesia.

The $i$ -th of the next $N-1$ lines contains three integers $U_i$ , $V_i$ , and $W_i$ ( $1 \le U_i, V_i \le N$ , $1 \le W_i \le 10^9$ ) — a two-directional road that connects cities $U_i$ and $V_i$ that takes $W_i$ hours to be traversed. The roads in Londonesia form a tree.

输出格式

Output one integer, which represents the minimum time in hours that is needed to visit each city at least once.

输入输出样例

输入 #1
4
1 2 4
2 3 5
3 4 4
输出 #1
8
输入 #2
5
1 2 45
1 3 50
1 4 10
1 5 65
输出 #2
115

说明/提示

In the first example, the journey that has the minimum time is $2 → 1 \xrightarrow{\text{teleport}} 4 → 3$ .

In the second example, the journey that has the minimum time is $3 → 1 → 4 → 1 → 2 \xrightarrow{\text{teleport}} 5$ .
上一题 去做题 下一题