CF24A.Ring road

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Nowadays the one-way traffic is introduced all over the world in order to improve driving safety and reduce traffic jams. The government of Berland decided to keep up with new trends. Formerly all nn cities of Berland were connected by nn two-way roads in the ring, i. e. each city was connected directly to exactly two other cities, and from each city it was possible to get to any other city. Government of Berland introduced one-way traffic on all nn roads, but it soon became clear that it's impossible to get from some of the cities to some others. Now for each road is known in which direction the traffic is directed at it, and the cost of redirecting the traffic. What is the smallest amount of money the government should spend on the redirecting of roads so that from every city you can get to any other?

输入格式

The first line contains integer nn ( 3<=n<=1003<=n<=100 ) — amount of cities (and roads) in Berland. Next nn lines contain description of roads. Each road is described by three integers aia_{i} , bib_{i} , cic_{i} ( 1<=ai,bi<=n,aibi,1<=ci<=1001<=a_{i},b_{i}<=n,a_{i}≠b_{i},1<=c_{i}<=100 ) — road is directed from city aia_{i} to city bib_{i} , redirecting the traffic costs cic_{i} .

输出格式

Output single integer — the smallest amount of money the government should spend on the redirecting of roads so that from every city you can get to any other.

输入输出样例

  • 输入#1

    3
    1 3 1
    1 2 1
    3 2 1
    

    输出#1

    1
    
  • 输入#2

    3
    1 3 1
    1 2 5
    3 2 1
    

    输出#2

    2
    
  • 输入#3

    6
    1 5 4
    5 3 8
    2 4 15
    1 6 16
    2 3 23
    4 6 42
    

    输出#3

    39
    
  • 输入#4

    4
    1 2 9
    2 3 8
    3 4 7
    4 1 5
    

    输出#4

    0
    
首页