CF294E.Shaass the Great

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

The great Shaass is the new king of the Drakht empire. The empire has nn cities which are connected by n1n-1 bidirectional roads. Each road has an specific length and connects a pair of cities. There's a unique simple path connecting each pair of cities.

His majesty the great Shaass has decided to tear down one of the roads and build another road with the same length between some pair of cities. He should build such road that it's still possible to travel from each city to any other city. He might build the same road again.

You as his advisor should help him to find a way to make the described action. You should find the way that minimize the total sum of pairwise distances between cities after the action. So calculate the minimum sum.

输入格式

The first line of the input contains an integer nn denoting the number of cities in the empire, (2<=n<=5000)(2<=n<=5000) . The next n1n-1 lines each contains three integers aia_{i} , bib_{i} and wiw_{i} showing that two cities aia_{i} and bib_{i} are connected using a road of length wiw_{i} , (1<=ai,bi<=n,aibi,1<=wi<=106)(1<=a_{i},b_{i}<=n,a_{i}≠b_{i},1<=w_{i}<=10^{6}) .

输出格式

On the only line of the output print the minimum pairwise sum of distances between the cities.

Please do not use the %lld specificator to read or write 64-bit integers in C++. It is preferred to use the cin, cout streams or the %I64d specificator.

输入输出样例

  • 输入#1

    3
    1 2 2
    1 3 4
    

    输出#1

    12
    
  • 输入#2

    6
    1 2 1
    2 3 1
    3 4 1
    4 5 1
    5 6 1
    

    输出#2

    29
    
  • 输入#3

    6
    1 3 1
    2 3 1
    3 4 100
    4 5 2
    4 6 1
    

    输出#3

    825
    
首页