CF1725J.Journey

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

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 NN cities numbered from 11 to NN . The cities are connected to each other with N1N-1 two-directional roads, with the ii -th road connecting cities UiU_i and ViV_i , and taking a time of WiW_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 NN ( 1N1051 \le N \le 10^5 ) — the number of cities in Londonesia.

The ii -th of the next N1N-1 lines contains three integers UiU_i , ViV_i , and WiW_i ( 1Ui,ViN1 \le U_i, V_i \le N , 1Wi1091 \le W_i \le 10^9 ) — a two-directional road that connects cities UiU_i and ViV_i that takes WiW_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 21teleport432 → 1 \xrightarrow{\text{teleport}} 4 → 3 .

In the second example, the journey that has the minimum time is 31412teleport53 → 1 → 4 → 1 → 2 \xrightarrow{\text{teleport}} 5 .

首页