CF416E.President's Path
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Good old Berland has n cities and m roads. Each road connects a pair of distinct cities and is bidirectional. Between any pair of cities, there is at most one road. For each road, we know its length.
We also know that the President will soon ride along the Berland roads from city s to city t . Naturally, he will choose one of the shortest paths from s to t , but nobody can say for sure which path he will choose.
The Minister for Transport is really afraid that the President might get upset by the state of the roads in the country. That is the reason he is planning to repair the roads in the possible President's path.
Making the budget for such an event is not an easy task. For all possible distinct pairs s,t ( s<t ) find the number of roads that lie on at least one shortest path from s to t .
输入格式
The first line of the input contains integers n,m ( 2<=n<=500 , 0<=m<=n⋅(n−1)/2 ) — the number of cities and roads, correspondingly. Then m lines follow, containing the road descriptions, one description per line. Each description contains three integers xi,yi,li ( 1<=xi,yi<=n,xi=yi,1<=li<=106 ), where xi,yi are the numbers of the cities connected by the i -th road and li is its length.
输出格式
Print the sequence of integers c12,c13,...,c1n,c23,c24,...,c2n,...,cn−1,n , where cst is the number of roads that can lie on the shortest path from s to t . Print the elements of sequence c in the described order. If the pair of cities s and t don't have a path between them, then cst=0 .
输入输出样例
输入#1
5 6 1 2 1 2 3 1 3 4 1 4 1 1 2 4 2 4 5 4
输出#1
1 4 1 2 1 5 6 1 2 1