A1511.[COCI-2013_2014-contest2]#1 LINIJE
普及/提高-
通过率:0%
时间限制:1.00s
内存限制:128MB
题目描述
Mirko and his faithful friend Slavko got really bored one day. The result of their boredom is the creation of a new game! In the beginning of the game, they draw N points in a coordinate system. The players take turns and Mirko plays first. He draws a straight line which is parallel to one of the axes of the coordinate system and passes through one of the N points. In the following moves, the player draws a straight line which is parallel to one of the axes of the coordinate system and passes through one of the N points located on the line drawn in the previous move of the opponent. No single line must be drawn twice. The loser is the player who cannot play his move. Determine who has the winning strategy.
输入格式
The first and only line of input contains the positive integer N (1 ≤ N ≤ 10 000).
Each of the following N lines contains two integers X and Y, the coordinates of the points drawn (1 ≤
X, Y ≤ 500).
输出格式
The first and only line of output must contain the name of the winner, either 'Mirko' or 'Slavko'.
输入输出样例
输入#1
3 1 1 1 2 1 3
输出#1
Mirko
输入#2
4 1 1 1 2 2 1 2 2
输出#2
Slavko
说明/提示
The first and only line of output must contain the name of the winner, either 'Mirko' or 'Slavko'.
Clarification of the first example: If Mirko draws the line y = 1, Slavko has to draw x = 1. Then
Mirko draws the line y = 2, and Slavko's only remaining move is to draw x = 1 again, which isn't
allowed.