CF1528D.It's a bird! No, it's a plane! No, it's AaParsa!
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
There are n cities in Shaazzzland, numbered from 0 to n−1 . Ghaazzzland, the immortal enemy of Shaazzzland, is ruled by AaParsa.
As the head of the Ghaazzzland's intelligence agency, AaParsa is carrying out the most important spying mission in Ghaazzzland's history on Shaazzzland.
AaParsa has planted m transport cannons in the cities of Shaazzzland. The i -th cannon is planted in the city ai and is initially pointing at city bi .
It is guaranteed that each of the n cities has at least one transport cannon planted inside it, and that no two cannons from the same city are initially pointing at the same city (that is, all pairs (ai,bi) are distinct).
AaParsa used very advanced technology to build the cannons, the cannons rotate every second. In other words, if the i -th cannon is pointing towards the city x at some second, it will target the city (x+1)modn at the next second.
As their name suggests, transport cannons are for transportation, specifically for human transport. If you use the i -th cannon to launch yourself towards the city that it's currently pointing at, you'll be airborne for ci seconds before reaching your target destination.
If you still don't get it, using the i -th cannon at the s -th second (using which is only possible if you are currently in the city ai ) will shoot you to the city (bi+s)modn and you'll land in there after ci seconds (so you'll be there in the (s+ci) -th second). Also note the cannon that you initially launched from will rotate every second but you obviously won't change direction while you are airborne.
AaParsa wants to use the cannons for travelling between Shaazzzland's cities in his grand plan, and he can start travelling at second 0 . For him to fully utilize them, he needs to know the minimum number of seconds required to reach city u from city v using the cannons for every pair of cities (u,v) .
Note that AaParsa can stay in a city for as long as he wants.
输入格式
The first line contains two integers n and m (2≤n≤600,n≤m≤n2) — the number of cities and cannons correspondingly.
The i -th line of the following m lines contains three integers ai , bi and ci (0≤ai,bi≤n−1,1≤ci≤109) , denoting the cannon in the city ai , which is initially pointing to bi and travelling by which takes ci seconds.
It is guaranteed that each of the n cities has at least one transport cannon planted inside it, and that no two cannons from the same city are initially pointing at the same city (that is, all pairs (ai,bi) are distinct).
输出格式
Print n lines, each line should contain n integers.
The j -th integer in the i -th line should be equal to the minimum time required to reach city j from city i .
输入输出样例
输入#1
3 4 0 1 1 0 2 3 1 0 1 2 0 1
输出#1
0 1 2 1 0 2 1 2 0
输入#2
6 6 0 0 1 1 1 1 2 2 1 3 3 1 4 4 1 5 5 1
输出#2
0 2 3 3 4 4 4 0 2 3 3 4 4 4 0 2 3 3 3 4 4 0 2 3 3 3 4 4 0 2 2 3 3 4 4 0
输入#3
4 5 0 1 1 1 3 2 2 2 10 3 0 1 0 0 2
输出#3
0 1 2 3 3 0 3 2 12 13 0 11 1 2 2 0
说明/提示
In the first example one possible path for going from 0 to 2 would be:
- Stay inside 0 and do nothing for 1 second.
- Use the first cannon and land at 2 after 1 second.
Note that: we could have used the second cannon in 0 -th second but it would have taken us 3 seconds to reach city 2 in that case.