1259 : Game on a Forest
Time Limit: 1 Sec Memory Limit: 256 MB Submitted: 85 Solved: 44Description
Plover and Georgia are playing a game on a forest graph. Given is an
(a forest) with
Each operation must be one of the following types:
- Select an edge in the graph. Then remove it.
- Select a node in the graph. Then remove both the node and the edges attached to it.
When one of them is unable to operate on his/her turn(which means the graph is empty), the game is lost and the other one wins. Now, assuming that Plover and Georgia are both extremely smart, Georgia wants to know how many different first moves can make her win the game.
Input
The first line contains two integers
For the next
It is guaranteed that for all
Output
Output contains an integer
Sample
#0
Input
3 1 1 2
Output
2
#1
Input
4 3 1 2 2 3 3 4
Output
3
Hint
For the first sample, if Georgia selects node
For the second sample, if Georgia selects any one of the
Author
FUDAN