ACPC10D - Tri graphs

no tags 

Here’s a simple graph problem: Find the shortest path from the top-middle vertex to the bottom-middle vertex in a given tri-graph. A tri-graph is an acyclic graph of (N ≥ 2) rows and exactly 3 columns. Unlike regular graphs, the costs in a tri-graph are associated with the vertices rather than the edges.

a

So, considering the example with N = 4, the cost of going straight down from the top to bottom along the middle vertices is 7 + 13 + 3 + 6 = 29. The layout of the directional edges in the graph are always the same as illustrated in the figure.

Input

Your program will be tested on one or more test cases.
Each test case is specified using N + 1 lines where the first line specifies a single integer (2 ≤ N ≤ 100, 000) denoting the number of rows in the graph. N lines follow, each specifying three integers representing the cost of the vertices on the ith row from left to right. The square of each cost value is less than 1,000,000.
The last case is followed by a line with a single zero.

Output

For each test case, print the following line:
k. n
Where k is the test case number (starting at one,) and n is the least cost to go from the top-middle vertex to the bottom-middle vertex.

Example

Input:
4
13 7 5
7 13 6
14 3 12
15 6 16
0

Output:
1. 22

hide comments
deepanshu0298: 2017-06-23 21:26:13

Simple DP :)....AC in one go(Fill up your dp matrix along with taking inputs for efficiency):p

Last edit: 2017-06-23 21:26:40
heisenberg0820: 2017-06-13 12:42:43

AC in one go :)

da_201501181: 2017-05-09 21:46:49

Simple DP...!!
BEWARE: Negative numbers as input
Thanks to testcases provided in comments..!!

prabodh prakash: 2017-04-27 18:30:58

I solved MISERMAN also, but this question gave me great insights into improving efficiency of code.

Nour Alhadi: 2017-04-24 16:43:16

for negative values my mistake was:
in recursive DP I used 0-indexed array and my DP base case was:
if (x==n) which was wrong --> if (x==n-1)
where x is my DP parameter to row and n is number of rows :D good problem

don_1234: 2017-04-01 16:28:04

use long in java cost me 1 wa

rishabh_nitw: 2017-03-24 19:48:53

Bottom Up :)

jatin03: 2017-03-23 18:35:42

What should we do for negative test cases like can anyone explain me how will we get -3 for this input
2
-1 -1 -1
-1 -1 -1
I'm getting -4 since it is the lowest???
Got it I understood

Last edit: 2017-03-23 18:45:13
amalik123: 2017-03-06 16:16:16

be careful with the output format,it gave me 1 WA

vanvinhbk94: 2017-02-23 07:37:43

AC in one go


Added by:Omar ElAzazy
Date:2010-11-30
Time limit:1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: ASM64
Resource:ACPC 2010