跳到主要内容
图灵 OJTURING / ONLINE JUDGE

#F2476. Shaass the Great

    ID: 2482 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 8 上传者: 标签>动态规划数据结构挑战难度共享题库Codeforces英文题面题目来源题面语言

Shaass the Great

题目描述

E. Shaass the Great
time limit per test
3.5 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

The great Shaass is the new king of the Drakht empire. The empire has n cities which are connected by n-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.

Input

The first line of the input contains an integer n denoting the number of cities in the empire, (2≤n≤5000). The next n-1 lines each contains three integers ai, bi and wi showing that two cities ai and bi are connected using a road of length wi, (1≤ai,bin,aibi,1≤wi≤106).

Output

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.

Examples
Input
3
1 2 2
1 3 4
Output
12
Input
6
1 2 1
2 3 1
3 4 1
4 5 1
5 6 1
Output
29
Input
6
1 3 1
2 3 1
3 4 100
4 5 2
4 6 1
Output
825

题目来源:fps-www.educg.net-codeforce-1-2833.xml.zip;FPS 共享题包,题包内第 2111 题。保留原作者与原赛事署名。