Submit | All submissions | Best solutions | Back to list |
UCV2013J - Valences |
Mr. White has found a way to maximize the purity of crystals based on certain chemical compounds. He has observed that each compound is made of molecules that are linked together following the structure of a complete binary tree where every level, except possibly the last, is completely filled, and all nodes are as far left as possible. Each node of the tree stores the valence of a molecule and is represented as an integer number. Mr. White uses an electronic microscope that dumps the molecule structure as a stream of integer numbers and would like to have your help on automatically obtaining the total valence of only the leaves of the given tree. For example, the sequence 4-3-2-6-0-3 represents the tree shown in the figure and the total valence of the leaves is 9.
Input
The input contains several test cases, each one corresponding to a particular compound. Each test case consists of a single line starting with an integer N (1 <= N <= 1000000), followed by N integer numbers Vi representing the valences of each molecule separated by blank spaces (0 <= Vi <= 100).
The end of input is indicated by a test case with N = 0.
Output
For each compound output a single line with the sum of the valences of the leaves of the tree.
Example
Input: 6 4 3 2 6 0 3
7 1 1 1 2 1 2 1
0 Output: 9
6
Added by: | Hector Navarro |
Date: | 2013-07-22 |
Time limit: | 1s |
Source limit: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All except: ASM64 |
Resource: | Local UCV 2013. Walter Hernández |
hide comments
|
||||||||
2013-07-26 18:51:53 aqfaridi
nothing easier than this.. Last edit: 2013-07-26 19:06:20 |
||||||||
2013-07-26 05:27:12 Rishabh Dugar
only a bIT triky.. |
||||||||
2013-07-25 16:47:48 ABHISHEK KUMAR
AC in one go |
||||||||
2013-07-25 12:00:10 Chandan Mittal
cakewalk :) |
||||||||
2013-07-25 10:09:34 [Lakshman]
@Author, Please remove the spoiling comments.. Last edit: 2013-07-25 12:02:26 |
||||||||
2013-07-24 16:27:58 raunakrocks
tutorials..plz. |
||||||||
2013-07-23 21:13:31 Hector Navarro
The cases are fine |