eolymp
bolt
Try our new interface for solving problems
Problems

Bob in Wonderland

Bob in Wonderland

Time limit 1 second
Memory limit 128 MiB

A chain, as everybody knows, is made of connected links. Typically, all links are of the same shape and size. Bob is a blacksmith apprentice, and he is making his own first iridium chain. He follows the traditional formula of chain-making. It says:

  • If there is no chain yet, make a link and it will be a piece of your chain.

  • If there is a piece of chain, make another link and connect it to one other link in the piece of chain you already have.

Bob made the first link. Then, each time he made another link, he connected it to some other link in his piece of chain, exactly as the formula told him to do.

When he finished, he realized that the object he created did not resemble a usual chain at all. In an effort to straighten the chain, he repeatedly took two links which seemed to be at the ends of the chain and tried to pull them apart as far as he could. But there were some more pieces of the "chain" dangling down from the straightened piece at various places.

It was obvious to Bob that his work is not finished yet and he decided to call the object he produced the unfinished chain. After some more pondering, Bob came to a conclusion that he has to break some links and reconnect them to the rest of the unfinished chain more cautiously to obtain a straight chain he aims to produce. In a straight chain, each link is connected to at most two other links and a straight chain cannot be separated into more pieces without breaking a link.

Being now more careful, Bob is going to progress in simple steps. In one step he will choose a link, say A, connected to another link, say B, in the unfinished chain. He will then break A, disconnect it from B and reconnect A to some other link, say C, in the unfinished chain. If there are more links other than B originally connected to A, Bob will keep them connected to A during the whole step.

What is the minimum number of steps Bob has to perform to get a straight chain?

Input data

The first line contains one integer n~(1 \le n \le 3 \cdot 10^5), the number of links in the unfinished chain. The links are labeled 1, 2, ..., n. Each of the next n − 1 lines has two integers denoting the labels of two connected links in the unfinished chain. The connections are listed in arbitrary order. The unfinished chain is guaranteed to form only one piece.

Output data

Print the minimum number of steps which will turn Bob’s unfinished chain into a straight chain.

Examples

Input example #1
5
4 3
1 2
4 5
3 2
Output example #1
0
Input example #2
6
1 3
3 2
3 4
4 5
4 6
Output example #2
2
Input example #3
7
1 2
2 3
3 4
4 5
3 6
6 7
Output example #3
1
Source 2019 ACM Central Europe (CERC), Prague, November 29 - December 1, Problem C