Indian National Olympiad in Informatics

Online Programming Contest, 12-13 November 2005

IARCS home > OLYMPIAD

Advanced Division

Problem 1: Catering Contracts, (K Narayan Kumar, CMI)

The government has invited bids from contractors to run canteens at all railway stations. Contractors will be allowed to bid for the catering contract at more than one station. However, to avoid monopolistic price-fixing, the government has declared that no contractor may bid for a pair of neighbouring stations.

The railway network has exactly one route between any pair of stations. Each station is directly connected by a railway line to at most 50 neighbouring stations.

To help contractors plan their bids, the government has provided data on the number of passengers who pass through each station each year. Contractors would like to bid for stations with a higher volume of passenger traffic to increase their turnover.

For instance, suppose the railway network is as follows, where the volume of passenger traffic is indicated by the side of each station.

Figure

In this network, the best option for the contractor is to bid for stations 1, 2, 5 and 6, for a total passenger volume of 90.

Your task is to choose a set of stations that the contractor should bid for so that the total volume of traffic across all the stations in the bid is maximized.

Input format

The first line of the input contains one integer N indicating the number of railways stations in the network. The stations are numbered 1,2,...,N. This is followed by N lines of input, lines 2, 3,..., N+1, indicating the volume of traffic at each station. The volume of traffic at station i, 1 ≤ iN, is given by a single integer in line i+1. The next N-1 lines of input, lines N+2, N+3, ..., 2N, describe the railway network. Each of these lines contains two integers, denoting a pair of stations that are neighbours.

Output format

The output should be a single integer, corresponding to the total volume of traffic across the set of stations in the optimal bid made by the contractor.

Test Data:

You may assume N ≤ 100000. Recall that each railway station has at most 50 neighbours.

Example:

Here is the sample input and output corresponding to the example discussed above.

Sample Input

6
10
20
25
40
30
30
4 5
1 3
3 4
2 3
6 4

Sample Output

90



Copyright (c) IARCS 2003-2024;   Last Updated: 10 Jan 2006