Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

USACO # 2 You are playing your favorite mobile game and you are trying to farm potions so that you may have a chance at

USACO #2 You are playing your favorite mobile game and you are trying to farm potions so that you may have a chance at defeating the legendary cow boss. The game map is a series of N (2<= N <=105) rooms labeled 1... N connected by N -1 edges that form a tree.
You can explore the map by making a series of traversals. A traversal is a simple path from room 1 to any other room in the tree. Once you finish one traversal, you can start another traversal from room 1. The map is complete once every one of its rooms is visited by at least one traversal. Your main goal is to complete the map in the minimum number of traversals.
Your secondary goal is to farm as many potions as possible. Before a traversal begins, a potion will spawn at some room in the map. You can pick up the potion by visiting the room that the potion spawned at in the current traversal. If you do not pick up the potion, then it will disappear once the current traversal ends, so you cannot pick it up in future traversals.
As you are a smart programmer, after looking at the game files, you were able to figure out where the potions will appear before your next N traversals. If you complete the map in the minimum number of traversals, what is the maximum amount of potions that you can farm from the map?
Input Format (input arrives from the terminal / stdin):
The first line of the input contains an integer N, denoting the number of rooms in the map.
Then follow N space-separated integers p1 p2... pN where 1<= pi <= N, where pi is the room that a potion will appear at before the ith traversal.
Finally, N -1 lines follow with two space-separated integers a b (1<= a, b <= N) representing an edge between rooms a and b. It is guaranteed that these edges form a tree.
Output Format (print output to the terminal / stdout):
Output one line containing a single integer, the maximum amount of potions that you can farm from the map in the minimum number of traversals.
Sample Input:
5
54321
12
13
34
35
Sample Output:
2
In this case, the minimum number of traversals required to complete the map is 3.
One optimal plan that picks up two potions in three traversals is as follows:
Traversal 1 : 1->3->5(Pick up potion at 5)
Traversal 2 : 1->3->4(Pick up potion at 5)
Traversal 3 : 1->2(Forced to complete the map and ignore potion at 3)

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Machine Learning And Knowledge Discovery In Databases European Conference Ecml Pkdd 2014 Nancy France September 15 19 2014 Proceedings Part 2 Lnai 8725

Authors: Toon Calders ,Floriana Esposito ,Eyke Hullermeier ,Rosa Meo

2014th Edition

3662448505, 978-3662448502

More Books

Students also viewed these Databases questions

Question

Who was the first woman prime minister of india?

Answered: 1 week ago

Question

Explain the concept of going concern value in detail.

Answered: 1 week ago

Question

Define marketing.

Answered: 1 week ago

Question

What are the traditional marketing concepts? Explain.

Answered: 1 week ago