Problem Statement
Fennec and Snuke are playing a board game.
On the board, there are N cells numbered 1 through N, and N−1 roads, each connecting two cells. Cell ai is adjacent to Cell bi through the i-th road. Every cell can be reached from every other cell by repeatedly traveling to an adjacent cell. In terms of graph theory, the graph formed by the cells and the roads is a tree.
Initially, Cell 1 is painted black, and Cell N is painted white. The other cells are not yet colored. Fennec (who goes first) and Snuke (who goes second) alternately paint an uncolored cell. More specifically, each player performs the following action in her/his turn:
- Fennec: selects an uncolored cell that is adjacent to a black cell, and paints it black.
- Snuke: selects an uncolored cell that is adjacent to a white cell, and paints it white.
A player loses when she/he cannot paint a cell. Determine the winner of the game when Fennec and Snuke play optimally.
Constraints
- 2≤N≤105
- 1≤ai,bi≤N
- The given graph is a tree.
Input
Input is given from Standard Input in the following format:
1 | N |
Output
If Fennec wins, print Fennec
; if Snuke wins, print Snuke
.
此题比较简单,因为是树,那么只需要考虑从1号点到n号点的路径上的点的数量,最优策略是优先取这条路径上的点,所以将1号点当成根遍历,从n回溯到1的过程中,找出哪些点是Snuke可以涂色的,将最后一个Snuke可以得到的点当根,最后一个Fennec可以得到的点所在子树的大小就是Fennec可以涂色的所有点,比较即可。
代码:
1 |
|