atcoder#ARC078B. [ABC067D] Fennec VS. Snuke
[ABC067D] Fennec VS. Snuke
Score : points
Problem Statement
Fennec and Snuke are playing a board game.
On the board, there are cells numbered through , and roads, each connecting two cells. Cell is adjacent to Cell through the -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 is painted black, and Cell 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
- The given graph is a tree.
Input
Input is given from Standard Input in the following format:
Output
If Fennec wins, print Fennec
; if Snuke wins, print Snuke
.
7
3 6
1 2
3 1
7 4
5 7
1 4
Fennec
For example, if Fennec first paints Cell black, she will win regardless of Snuke's moves.
4
1 4
4 2
2 3
Snuke