eolymp
bolt
Try our new interface for solving problems
Problems

Funny Game

Funny Game

There are several airports in one country, and there are flights between some of them. One can fly from any airport to any other, probably with some changes. For any pair of airports there exists only one sequence of flights that connects them. Two terrorists play a game. They make moves in turn. Each move consists of the following operations. A player mines an airport, chooses a flight and flies away together with his colleague. After the take-off he actuates a radio-controlled fuse. As a result the airport that the terrorists have just left is destroyed, and all the flights to and from this airport are no longer possible. After the aircraft lands the other player makes his move, and so forth. One loses if one cannot make a move. Given an initial list of flights and the number of an airport where the terrorists are at the start of the game, write a program which would determine who wins if the terrorists play a perfect game (each chooses the best move). \InputFile The first line contains two integers: \textbf{n} and \textbf{k} separated with a space. Here \textbf{n} is the number of airports (\textbf{n} ≤ \textbf{1000}) and \textbf{k} is the number of an airport, which is the starting point of the game (\textbf{1} ≤ \textbf{k} ≤ \textbf{n}). The next \textbf{n−1} lines contain pairs of integers separated with a space. These integers are numbers of airports, connected with a flight (all the flights are symmetric and are mentioned only once). There are at most \textbf{20} flights to each airport. \OutputFile If the player who starts the game wins, the program should write "\textbf{First player wins flying to airport L}" where \textbf{L} is the number of an airport to which the players should fly first. If there are several such airports, the program should find one of them that has the minimal number. Otherwise the program should write "\textbf{First player loses}".
Time limit 1 second
Memory limit 122.81 MiB
Input example #1
4 3
3 2
3 1
1 4
Output example #1
First player wins flying to airport 2