A11888 | Road Projects
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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 \neq 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 $x_i$ 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 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 \neq 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 $x_i$ 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 \le n \le 3 \cdot 10^5$ , $1 \le m \le 3 \cdot 10^5$ ) — the number of cities and the number of projects, respectively.
Each of the next $n - 1$ lines contains three integers $v_i$ , $u_i$ and $w_i$ ( $1 \le v_i, u_i \le n$ , $1 \le w_i \le 10^9$ ) — 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 $x_j$ ( $1 \le x_j \le 10^9$ ) — the length of the road for the $j$ -th project.
Each of the next $n - 1$ lines contains three integers $v_i$ , $u_i$ and $w_i$ ( $1 \le v_i, u_i \le n$ , $1 \le w_i \le 10^9$ ) — 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 $x_j$ ( $1 \le x_j \le 10^9$ ) — 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 \rightarrow 2 \rightarrow 6 \rightarrow 5 \rightarrow 3 \rightarrow 4 \rightarrow 7$ $=$ $18 + 4 + 1 + 12 + 24 + 24 = 83$ ). Other possible pairs of cities will give answers less or equal to $83$ .

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 \rightarrow 2 \rightarrow 6 \rightarrow 5 \rightarrow 3 \rightarrow 4 \rightarrow 7$ $=$ $18 + 4 + 1 + 12 + 24 + 24 = 83$ ). Other possible pairs of cities will give answers less or equal to $83$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted