当前你的浏览器版本过低,网站已在兼容模式下运行,兼容模式仅提供最小功能支持,网站样式可能显示不正常。
请尽快升级浏览器以体验网站在线编辑、在线运行等功能。

建议使用的浏览器:

谷歌Chrome 火狐Firefox Opera浏览器 微软Edge浏览器 QQ浏览器 360浏览器 傲游浏览器

7134:Public Transport System

题目描述
You are living in a country which has well-developed transportation. There are $n$ cities numbered from $1$ to $n$ and $m$ public transport routes numbered from $1$ to $m$ in the country. The route numbered $i$ is a directed route from city $u_i$ to city $v_i$, with a cost $a_i$ and a preferential factor $b_i$.

To facilitate people's travel, the government has formulated a series of preferential measures. For a trip that starts from city $s$, passes through routes numbered $e_1, e_2, \dots, e_k$ and ends in city $t$, the cost of each route is calculated as follows:

- For route $e_1$, the cost is $a_{e_1}$.
- For route $e_i \ (i > 1)$, if $a_{e_i} > a_{e_{i - 1}}$, the cost is $a_{e_i} - b_{e_i}$, otherwise the cost is $a_{e_i}$.

The total cost of the trip is the sum of the costs of these routes.

You are now living in city $1$. You want to find the minimum cost of traveling from city $1$ to city $k$, for each $k \in [1, n]$ respectively.
输入解释
The first line of the input contains an integer $T$ $(1 \leq T \leq 10^4)$, representing the number of test cases.

The first line of each test case contains two integers $n,m$ $(2 \leq n \leq 10^5, 1 \leq m \leq 2 \times 10^5)$, representing the number of cities and routes.

For the following $m$ lines, the $i$-th line contains four integers $u_i, v_i, a_i, b_i$ $(1 \leq u_i, v_i \leq n$, $u_i \neq v_i$, $1 \leq b_i \leq a_i \leq 10^9)$, representing the route numbered $i$.

It is guaranteed that the sum of $n$ over all test cases does not exceed $6 \times 10^5$ and the sum of $m$ does not exceed $1.2 \times 10^6$.
输出解释
For each test case, output a single line containing $n$ integers separated by a space, the $k$-th of which is the minimum cost of traveling from city $1$ to city $k$, or $-1$ if you can't reach city $k$.

Don't print any extra spaces at the end of each line.
输入样例
2
4 4
1 2 3 2
2 3 4 1
1 3 7 5
4 3 2 1
4 8
4 2 3 3
1 3 6 3
4 2 10 5
1 2 8 2
3 2 4 3
4 2 7 7
3 4 4 2
1 2 8 1
输出样例
0 3 6 -1
0 8 6 10

该题目是Virtual Judge题目,来自 杭电HDUOJ

源链接: HDU-7134

最后修改于 2021-10-23T19:11:39+00:00 由爬虫自动更新

共提交 5

通过率 0.0%
时间上限 内存上限
10000/5000MS(Java/Others) 262144/262144K(Java/Others)