eolymp
bolt
Try our new interface for solving problems
Problems

Cell Phone Network

Cell Phone Network

Farmer John has decided to give each of his cows a cell phone in hopes to encourage their social interaction. This, however, requires him to set up cell phone towers on his \textbf{N} (\textbf{1} ≤ \textbf{N} ≤ \textbf{100000}) pastures (conveniently numbered \textbf{1..N}) so they can all communicate. Exactly \textbf{N-1} pairs of pastures are adjacent, and for any two pastures \textbf{A} and \textbf{B} (\textbf{1} ≤ \textbf{A} ≤ \textbf{N}; \textbf{1} ≤ \textbf{B} ≤ \textbf{N}; \textbf{A} ≠ \textbf{B}) there is a sequence of adjacent pastures such that \textbf{A} is the first pasture in the sequence and \textbf{B} is the last. Farmer John can only place cell phone towers in the pastures, and each tower has enough range to provide service to the pasture it is on and all pastures adjacent to the pasture with the cell tower. Help him determine the minimum number of towers he must install to provide cell phone service to each pasture. \InputFile Line \textbf{1}: A single integer: \textbf{N}. Lines \textbf{2..N}: Each line specifies a pair of adjacent pastures with two space-separated integers: \textbf{A} and \textbf{B}. \OutputFile A single integer indicating the minimum number of towers to install.
Time limit 1 second
Memory limit 64 MiB
Input example #1
5
1 3
5 2
4 3
3 5
Output example #1
2