ACPC10D - Tri graphs

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

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

hide comments
2014-06-03 09:36:56 Soma
can some one explain above test case?
got it....../

Last edit: 2014-06-19 22:29:17
2014-06-02 12:38:26 Mohan K
any tricky cases pl //
2014-04-22 08:55:50 sarelfeniel
Fun question. Bottleneck is input.
2014-04-01 18:27:52 AlcatraZ
Finally AC.. numbers can b negative -.-

Last edit: 2014-04-01 18:28:56
2014-02-09 16:02:02 JordanBelfort
no need for any extra array
easy
2014-01-27 13:56:34 Vipul Pandey
problem is easy and nice. int is sufficient. No need of long long.
2014-01-14 18:47:15 shiva_hellgeek
why usage of long long giving RTE!!!
2013-07-20 21:14:51 sobhan
i use dp and i got acc
but i think if i use bellman_ford i give acc too
2013-07-13 00:30:44 Hossam Abd El Rahman
I got runtime error !! Any Idea ?
2013-06-26 09:23:32 Sharan Girdhani
Ac!! :D

Last edit: 2013-06-26 09:38:48
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.