atcoder#ABC137E. [ABC137E] Coins Respawn
[ABC137E] Coins Respawn
Score : points
Problem Statement
There is a directed graph with vertices numbered to and edges. The -th edge is directed from Vertex to Vertex , and there are coins placed along that edge. Additionally, there is a button on Vertex .
We will play a game on this graph. You start the game on Vertex with zero coins, and head for Vertex by traversing the edges while collecting coins. It takes one minute to traverse an edge, and you can collect the coins placed along the edge each time you traverse it. As usual in games, even if you traverse an edge once and collect the coins, the same number of coins will reappear next time you traverse that edge, which you can collect again.
When you reach Vertex , you can end the game by pressing the button. (You can also choose to leave Vertex without pressing the button and continue traveling.) However, when you end the game, you will be asked to pay coins, where is the number of minutes elapsed since the start of the game. If you have less than coins, you will have to pay all of your coins instead.
Your score will be the number of coins you have after this payment. Determine if there exists a maximum value of the score that can be obtained. If the answer is yes, find that maximum value.
Constraints
- All values in input are integers.
- Vertex can be reached from Vertex .
Input
Input is given from Standard Input in the following format:
Output
If there exists a maximum value of the score that can be obtained, print that maximum value; otherwise, print -1
.
3 3 10
1 2 20
2 3 30
1 3 45
35
There are two ways to travel from Vertex to Vertex :
- Vertex : You collect coins on the way. After two minutes from the start of the game, you press the button, pay coins, and you have coins left.
- Vertex : You collect coins on the way. After one minute from the start of the game, you press the button, pay coins, and you have coins left.
Thus, the maximum score that can be obtained is .
2 2 10
1 2 100
2 2 100
-1
The edge extending from Vertex takes you to Vertex . If you then traverse the edge extending from Vertex to itself times and press the button, your score will be . Thus, you can infinitely increase your score, which means there is no maximum value of the score that can be obtained.
4 5 10
1 2 1
1 4 1
3 4 1
2 2 100
3 3 100
0
There is no way to travel from Vertex to Vertex other than traversing the edge leading from Vertex to Vertex directly. You will pick up one coin along this edge, but after being asked to paying coins, your score will be .
Note that you can collect an infinite number of coins if you traverse the edge leading from Vertex to Vertex , but this is pointless since you can no longer reach Vertex and end the game.