CF566C.Logistical Questions

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Some country consists of nn cities, connected by a railroad network. The transport communication of the country is so advanced that the network consists of a minimum required number of (n1)(n-1) bidirectional roads (in the other words, the graph of roads is a tree). The ii -th road that directly connects cities aia_{i} and bib_{i} , has the length of lil_{i} kilometers.

The transport network is served by a state transporting company FRR (Fabulous Rail Roads). In order to simplify the price policy, it offers a single ride fare on the train. In order to follow the route of length tt kilometers, you need to pay burles. Note that it is forbidden to split a long route into short segments and pay them separately (a special railroad police, or RRP, controls that the law doesn't get violated).

A Large Software Company decided to organize a programming tournament. Having conducted several online rounds, the company employees determined a list of finalists and sent it to the logistical department to find a place where to conduct finals. The Large Software Company can easily organize the tournament finals in any of the nn cities of the country, so the the main factor in choosing the city for the last stage of the tournament is the total cost of buying tickets for all the finalists. We know that the ii -th city of the country has wiw_{i} cup finalists living there.

Help the company employees find the city such that the total cost of travel of all the participants to it is minimum.

输入格式

The first line of the input contains number nn ( 1<=n<=2000001<=n<=200000 ) — the number of cities in the country.

The next line contains nn integers w1,w2,...,wnw_{1},w_{2},...,w_{n} ( 0<=wi<=1080<=w_{i}<=10^{8} ) — the number of finalists living in each city of the country.

Next (n1)(n-1) lines contain the descriptions of the railroad, the ii -th line contains three integers, aia_{i} , bib_{i} , lil_{i} ( 1<=ai,bi<=n1<=a_{i},b_{i}<=n , aibia_{i}≠b_{i} , 1<=li<=10001<=l_{i}<=1000 ).

输出格式

Print two numbers — an integer ff that is the number of the optimal city to conduct the competition, and the real number cc , equal to the minimum total cost of transporting all the finalists to the competition. Your answer will be considered correct if two conditions are fulfilled at the same time:

  1. The absolute or relative error of the printed number cc in comparison with the cost of setting up a final in city ff doesn't exceed 10610^{-6} ;
  2. Absolute or relative error of the printed number cc in comparison to the answer of the jury doesn't exceed 10610^{-6} .

If there are multiple answers, you are allowed to print any of them.

输入输出样例

  • 输入#1

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

    输出#1

    3 192.0
  • 输入#2

    2
    5 5
    1 2 2
    

    输出#2

    1 14.142135623730951000
    

说明/提示

In the sample test an optimal variant of choosing a city to conduct the finals of the competition is 33 . At such choice the cost of conducting is burles.

In the second sample test, whatever city you would choose, you will need to pay for the transport for five participants, so you will need to pay burles for each one of them.

首页