atcoder#ABC137E. [ABC137E] Coins Respawn

[ABC137E] Coins Respawn

Score : 500500 points

Problem Statement

There is a directed graph with NN vertices numbered 11 to NN and MM edges. The ii-th edge is directed from Vertex AiA_i to Vertex BiB_i, and there are CiC_i coins placed along that edge. Additionally, there is a button on Vertex NN.

We will play a game on this graph. You start the game on Vertex 11 with zero coins, and head for Vertex NN 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 NN, you can end the game by pressing the button. (You can also choose to leave Vertex NN without pressing the button and continue traveling.) However, when you end the game, you will be asked to pay T×PT \times P coins, where TT is the number of minutes elapsed since the start of the game. If you have less than T×PT \times P 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

  • 2N25002 \leq N \leq 2500
  • 1M50001 \leq M \leq 5000
  • 1Ai,BiN1 \leq A_i, B_i \leq N
  • 1Ci1051 \leq C_i \leq 10^5
  • 0P1050 \leq P \leq 10^5
  • All values in input are integers.
  • Vertex NN can be reached from Vertex 11.

Input

Input is given from Standard Input in the following format:

NN MM PP

A1A_1 B1B_1 C1C_1

::

AMA_M BMB_M CMC_M

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

Figure of the graph given in Sample Input 1

There are two ways to travel from Vertex 11 to Vertex 33:

  • Vertex 1231 \rightarrow 2 \rightarrow 3: You collect 20+30=5020 + 30 = 50 coins on the way. After two minutes from the start of the game, you press the button, pay 2×10=202 \times 10 = 20 coins, and you have 5020=3050 - 20 = 30 coins left.
  • Vertex 121 \rightarrow 2: You collect 4545 coins on the way. After one minute from the start of the game, you press the button, pay 1×10=101 \times 10 = 10 coins, and you have 4510=3545 - 10 = 35 coins left.

Thus, the maximum score that can be obtained is 3535.

2 2 10
1 2 100
2 2 100
-1

Figure of the graph given in Sample Input 2

The edge extending from Vertex 11 takes you to Vertex 22. If you then traverse the edge extending from Vertex 22 to itself tt times and press the button, your score will be 90+90t90 + 90t. 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

Figure of the graph given in Sample Input 3

There is no way to travel from Vertex 11 to Vertex 44 other than traversing the edge leading from Vertex 11 to Vertex 44 directly. You will pick up one coin along this edge, but after being asked to paying 1010 coins, your score will be 00.

Note that you can collect an infinite number of coins if you traverse the edge leading from Vertex 11 to Vertex 22, but this is pointless since you can no longer reach Vertex 44 and end the game.