J - Journey through the kingdom
Languages: C, C++, Java, Tiger, Python, Pascal, JavaScript, Haskell, C#
Time & Memory limits:
(details)
The kingdom of Quadradonia is divided into provinces forming a grid-like pattern of $R$ rows and $C$ columns. Legend has it many wonderful things await discovery in some of the provinces, although it’s unclear if you can actually find the elusive solid form of water stories call “ice”, or if it’s just dragons.
You are planning a trip through the kingdom to find out, but the roads are dangerous so you have to be very careful. To go from one province to another you would like to use the convenient escorted carriage system managed by the Interprovincial Communication & Peregrination Company (ICPC). In each province, the ICPC provides a heavily guarded carriage for you to travel to any other province in a rectangle containing it, at the same flat rate (which may however vary from one province to another). More formally, at the province in the $i$-th row and the $j$-th column you can rent an escorted carriage for a cost of $V_{ij}$ , allowing you to safely travel to any province at most $R_{ij}$ rows away from row $i$, and at most $C_{ij}$ columns away from column $j$ (that is, having row number $i'$ and column number $j'$ with $|i − i'| \leq R_{ij}$ and $|j − j'| ≤ C_{ij}$).
In your journey you want to visit $N$ provinces $p_1, p_2, ..., p_N$, in that order. Wandering around looking for adventures is an expensive business and your budget is limited, so you would like to spend as little as possible in transportation. Therefore, you would like to calculate the minimum cost of each leg of your trip, that is, the minimum cost of the carriages you have to rent to go from province $p_k$ to province $p_{k+1}$, for $k = 1, 2, ..., N - 1$.
Output
Output a line with $N - 1$ integers representing the minimum cost of each leg of your trip, or the value $−1$ if it is impossible to travel using ICPC’s escorted carriage system for that leg. More precisely, for $k = 1, 2, ..., N - 1$, the $k$-th number must be the minimum cost of the carriages you have to rent to go from province $p_k$ to province $p_{k+1}$ using ICPC’s escorted carriage system, or the value $−1$ if it is impossible to travel from province $p_k$ to province $p_{k+1}$ with this system.