CF1016F.Road Projects
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
There are n cities in the country of Berland. Some of them are connected by bidirectional roads in such a way that there exists exactly one path, which visits each road no more than once, between every pair of cities. Each road has its own length. Cities are numbered from 1 to n .
The travelling time between some cities v and u is the total length of the roads on the shortest path from v to u .
The two most important cities in Berland are cities 1 and n .
The Berland Ministry of Transport decided to build a single new road to decrease the traffic between the most important cities. However, lots of people are used to the current travelling time between the most important cities, so the new road shouldn't change it too much.
The new road can only be built between such cities v and u that v=u and v and u aren't already connected by some road.
They came up with m possible projects. Each project is just the length x of the new road.
Polycarp works as a head analyst at the Berland Ministry of Transport and it's his job to deal with all those m projects. For the i -th project he is required to choose some cities v and u to build the new road of length xi between such that the travelling time between the most important cities is maximal possible.
Unfortunately, Polycarp is not a programmer and no analyst in the world is capable to process all projects using only pen and paper.
Thus, he asks you to help him to calculate the maximal possible travelling time between the most important cities for each project. Note that the choice of v and u can differ for different projects.
输入格式
The first line contains two integers n and m ( 3≤n≤3⋅105 , 1≤m≤3⋅105 ) — the number of cities and the number of projects, respectively.
Each of the next n−1 lines contains three integers vi , ui and wi ( 1≤vi,ui≤n , 1≤wi≤109 ) — the description of the i -th road. It is guaranteed that there exists exactly one path, which visits each road no more than once, between every pair of cities.
Each of the next m lines contains a single integer xj ( 1≤xj≤109 ) — the length of the road for the j -th project.
输出格式
Print m lines, the j -th line should contain a single integer — the maximal possible travelling time between the most important cities for the j -th project.
输入输出样例
输入#1
7 2 1 2 18 2 3 22 3 4 24 4 7 24 2 6 4 3 5 12 1 100
输出#1
83 88
说明/提示
The road network from the first example:
You can build the road with length 1 between cities 5 and 6 to get 83 as the travelling time between 1 and 7 ( 1→2→6→5→3→4→7 = 18+4+1+12+24+24=83 ). Other possible pairs of cities will give answers less or equal to 83 .