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
Nishant Kumar: 2013-06-21 15:13:59

easy one!!!

aqfaridi: 2014-01-22 23:59:58

Is it a question of graph ?? :P

LaFolle: 2013-05-20 19:09:40

int will be enough.

aman gupta: 2013-03-25 08:10:56

algo was easy, but implementation was quite painful :( but at last enjoyed a lot :-)

Rocker3011: 2013-03-07 18:24:21

no need of long long :) easy problem

Abo Hasan: 2013-03-02 23:18:20

%lld with int costed me 3 WAs. Pay attention!

Anmol: 2013-01-14 12:24:39

initialisation are tricky
got many wa bcoz of that

Haijun Deng: 2013-01-14 02:56:32

Still WA with the following cases passed
4
13 7 5
7 13 6
14 3 12
15 6 16
2
-1 -1 -1
-1 -1 -1
4
-1 -2 -3
-4 -5 -6
-1 -2 -3
-7 -6 -5
0
1. 22
2. -3
3. -32

abdou_93: 2013-01-13 07:56:48

@janani the answer of
4
-1 -2 -3
-4 -5 -6
-1 -2 -3
-7 -6 -5
is -32

Janani: 2013-01-06 03:45:10

@tantu28 : how -32, i am getting -23!

@tantu28 : Got it! :)

Last edit: 2013-01-06 03:48:29

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