Maximum cost of a path (2)

Given a directed and complete graph with nn vertices, compute the maximum cost of all the paths with the vertices in increasing order. The given graph is represented by an n×nn \times n matrix MM, where for every pair (i,j)(i, j) with iji \ne j, mijm_{ij} is the (perhaps negative) cost of the arc from ii to jj.

For instance, the maximum cost of the first test is 100, because of the path 01340 \to 1 \to 3 \to 4, with cost 2010+90=10020 - 10 + 90 = 100.

Input

Input consists of the number of vertices nn, followed by the matrix MM (nn lines, each one with nn integer numbers), followed by the initial vertex xx. Vertices are numbered from 0 to n1n-1. You can assume 1n1031 \le n \le 10^3, that the diagonal has only zeros, and that the rest of numbers are between 106-10^6 and 10610^6.

Output

Print the maximum cost of all the paths with the vertices in increasing order.

Problem information

Author: Unknown
Translator: Salvador Roura

Generation: 2026-01-25T11:33:45.565Z

© Jutge.org, 2006–2026.
https://jutge.org