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
MR. BEAN : 2012-12-17 12:22:12

forgot to change the line, costed 2 WA !

tantu92: 2012-10-15 14:18:44

@janani:its -32

Janani: 2012-10-15 01:03:49

What should be the answer for
4
-1 -2 -3
-4 -5 -6
-1 -2 -3
-7 -6 -5 ?

Rahul kumar: 2012-10-12 09:24:15

more test cases pls...

Aaquib Ishtiyaq: 2012-09-22 21:31:03

AC in second try..... HUH!! was not printing correct format...

gabber: 2012-09-18 20:52:58

negative numbers huh...
Finally DP :)...

Last edit: 2012-09-19 20:50:43
saket diwakar: 2012-07-03 10:45:01

enjoyed to solve it....got AC in first try.:)

naive_coder: 2012-04-28 18:07:26

@omar Please can you tell me where i am getting wrong answer submission id
6917493

Last edit: 2012-04-28 19:35:18
Ritesh Garg: 2012-04-17 05:25:37

Please take care of the space after 1.<here>22

Last edit: 2012-04-17 05:26:05
bristy: 2012-03-31 21:33:47

|)P........


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