PYRA - Treeramids
Daniel is building towers. He has a big amount of block of the size 1x1xK (for any K). Out of them he is building towers according to the following rules: the longest block is put in the basement of the tower. Several towers built by the same rules can be put on this block. The distance between the bases of those towers should be 1 and the distance between the bases of the towers and the edges of the common basement should be 1. There should be a block of the length 1 on the top of each tower. Daniel encodes every tower with root tree. For example:
The root of the tree corresponds to the basement of the tower. Its descendants correspond to the towers standing on it. The leaves correspond to the blocks of the size 1x1x1 on the tops. Given the root tree describing one of those structures, calculate the total volume of the structure.
Input
The first line of input contains the number t - the number of tests. Next comes the description of t tests. Each test starts with an integer n - the number of nodes of the tree. This is followed by n-1 line, consisting of two integers a and b - number of nodes connected by an edge. Nodes are numbered from 0 to n-1. The root of the tree will always be a node with number 0. Otherwise the nodes and edges can go in any order.
Constraints
1 <= t <= 25
1 <= n <= 10^4
Output
For each test case print the total volume of the structure build according to the rules in the problem statement.
Example
Input: 2 7 0 1 2 0 0 3 2 4 5 2 6 3 3 1 2 1 0 Output: 25 9
hide comments
siddharth_0196:
2017-01-01 14:14:19
Recursion will do the trick! |
|
Sarthak Munshi:
2016-07-05 19:55:37
DFS with a little twist ! |
|
krish:
2015-03-28 14:51:39
Simple recursive DFS that's it:) |
|
garvit jain:
2015-01-05 15:21:29
I guess the input limits are wrong.My code gives WA 10000 but accepted for 100000. |
|
Chandan Mittal:
2013-12-14 21:03:42
@Spooky
|
|
AC Srinivas:
2013-07-19 06:50:02
@avinash kumar : see the following picture
|
|
avinash kumar:
2013-03-15 09:39:06
The distance between the bases of those towers should be 1 and the distance between the bases of the towers and the edges of the common basement should be 1.
|
|
OoOE:
2013-03-08 12:54:54
TLE for python code... there is not even a single successful python submission for this problem.. :( Last edit: 2013-03-08 12:57:16 |
|
Simón Murillo Gómez:
2012-07-19 02:51:28
This one was really easy indeed :) |
|
Rishi Ranjan Singh:
2012-03-14 07:56:37
can i get some test case which SPOJ use so that i can debug my worng answer
|
Added by: | Spooky |
Date: | 2010-03-09 |
Time limit: | 1s |
Source limit: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All except: NODEJS OBJC PERL6 SQLITE VB.NET |
Resource: | Advancement Spring 2010, http://sevolymp.uuuq.com/ |