CF61D.Eternal Victory

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Valerian was captured by Shapur. The victory was such a great one that Shapur decided to carve a scene of Valerian's defeat on a mountain. So he had to find the best place to make his victory eternal!

He decided to visit all nn cities of Persia to find the best available mountain, but after the recent war he was too tired and didn't want to traverse a lot. So he wanted to visit each of these nn cities at least once with smallest possible traverse. Persian cities are connected with bidirectional roads. You can go from any city to any other one using these roads and there is a unique path between each two cities.

All cities are numbered 11 to nn . Shapur is currently in the city 11 and he wants to visit all other cities with minimum possible traverse. He can finish his travels in any city.

Help Shapur find how much He should travel.

输入格式

First line contains a single natural number nn ( 1<=n<=1051<=n<=10^{5} ) — the amount of cities.

Next n1n-1 lines contain 33 integer numbers each xix_{i} , yiy_{i} and wiw_{i} ( 1<=xi,yi<=n,0<=wi<=2×1041<=x_{i},y_{i}<=n,0<=w_{i}<=2×10^{4} ). xix_{i} and yiy_{i} are two ends of a road and wiw_{i} is the length of that road.

输出格式

A single integer number, the minimal length of Shapur's travel.

Please, do not use %lld specificator to read or write 64-bit integers in C++. It is preffered to use cout (also you may use %I64d).

输入输出样例

  • 输入#1

    3
    1 2 3
    2 3 4
    

    输出#1

    7
    
  • 输入#2

    3
    1 2 3
    1 3 3
    

    输出#2

    9
    
首页