printРабочее место участника

printЗадачи

2124. Lines

Ограничения: время – 1s/2s, память – 64MiB Ввод: input.txt или стандартный ввод Вывод: output.txt или стандартный вывод copy
Послать решение Blockly Посылки Темы Где Обсудить (0)

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'.

Sample Input #1

3
1 1
1 2
1 3

Sample Output #1

Mirko

Sample Input #2

4
1 1
1 2
2 1
2 2

Sample Output #2

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.
Source: COCI 2013/2014, contest #2
loading