eolymp
bolt
Try our new interface for solving problems
Problems

Training

Training

Mirko and Slavko are training hard for the annual tandem cycling marathon taking place in Croatia. They need to choose a route to train on. There are \textbf{N} cities and \textbf{M} roads in their country. Every road connects two cities and can be traversed in both directions. Exactly \textbf{N-1} of those roads are paved, while the rest of the roads are unpaved trails. Fortunately, the network of roads was designed so that each pair of cities is connected by a path consisting of paved roads. In other words, the \textbf{N} cities and the \textbf{N-1} paved roads form a tree structure. Additionally, each city is an endpoint for at most \textbf{10} roads total. A training route starts in some city, follows some roads and ends in the same city it started in. Mirko and Slavko like to see new places, so they made a rule never to go through the same city nor travel the same road twice. The training route may start in any city and does not need to visit every city. Riding in the back seat is easier, since the rider is shielded from the wind by the rider in the front. Because of this, Mirko and Slavko change seats in every city. To ensure that they get the same amount of training, they must choose a route with an even number of roads. Mirko and Slavko's competitors decided to block some of the unpaved roads, making it impossible for them to find a training route satisfying the above requirements. For each unpaved road there is a cost (a positive integer) associated with blocking the road. It is impossible to block paved roads. Write a program that, given the description of the network of cities and roads, finds the smallest total cost needed to block the roads so that no training route exists satisfying the above requirements. \InputFile The first line of input contains two integers \textbf{N} and \textbf{M} (\textbf{2 ≤ N ≤ 1 000}, \textbf{N−1 ≤ M ≤ 5 000}), the number of cities and the total number of roads. Each of the following \textbf{M} lines contains three integers \textbf{A}, \textbf{B} and \textbf{C} (\textbf{1 ≤ A}, \textbf{B ≤ N}, \textbf{0 ≤ C ≤ 10 000}), describing one road. The numbers \textbf{A} and \textbf{B} are different and they represent the cities directly connected by the road. If \textbf{C = 0}, the road is paved; otherwise, the road is unpaved and \textbf{C} represents the cost of blocking it. Each city is an endpoint for at most \textbf{10} roads. There will never be more than one road directly connecting a single pair of cities. \OutputFile Output should consist of a single integer, the smallest total cost as described in the problem statement. In test cases worth a total of 30 points, the paved roads will form a chain (that is, no city will be an endpoint for three or more paved roads).
Time limit 1 second
Memory limit 64 MiB
Input example #1
5 8
2 1 0
3 2 0
4 3 0
5 4 0
1 3 2
3 5 2
2 4 5
2 5 1
Output example #1
5
Source IOI-2007, Day 2