시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 512 MB365517.241%

문제

Paula and Marin are playing a game on a tree. Not on a real tree, of course. That would be dangerous. Although, who can say that a connected graph with n nodes, marked by integers from 1 to n, and n − 1 edges, is completely safe?

Before the game started, Paula colored some edges blue, and Marin colored some edges red. If some edge was colored by both, its final color is magenta. All edges were colored by at least one of them.

Paula’s piece starts the game in node a, and Marin’s piece in node b. Players alternate moves, and Paula goes first. When it’s their turn, the player must move their piece to some adjacent node which doesn’t also contain the opponents piece. Also, Paula can’t use red edges, and Marin can’t use blue edges, while both can use magenta edges. The player who can’t make a move loses.

Paula and Marin both play optimally. If they realize that the game can run forever, they will declare a draw. Determine the outcome of the game!

입력

The first line contains an integer n (2 ≤ n ≤ 100 000), the number of nodes.

The second line contains integers a and b (1 ≤ a, b ≤ n, a ≠ b), initial nodes of Paula and Marin.

The next n − 1 lines describe the edges. Each line is of the form "x y color", where x and y (1 ≤ x, y ≤ n) are the endpoints, and color is plava (Croatian for blue), crvena (Croatian for red) or magenta.

출력

Output Paula if Paula will win, Marin if Marin will win, or Magenta if it’s a draw.

서브태스크

번호배점제한
130

2 ≤ n ≤ 100

230

All colors are magenta.

350

No additional constraints.

예제 입력 1

3
1 3
3 2 magenta
2 1 magenta

예제 출력 1

Paula

Paula will move to node 2, and then Marin can’t make a move.

예제 입력 2

5
3 5
1 2 magenta
1 3 magenta
2 4 plava
2 5 crvena

예제 출력 2

Marin

Paula must move to node 1, and then Marin will move to node 2. Paula now can’t move to node 2, since Marin is there, so she must return to node 3. Marin moves to node 1 and wins.

예제 입력 3

5
1 4
2 1 plava
1 3 crvena
5 2 plava
4 1 magenta

예제 출력 3

Magenta

채점 및 기타 정보

  • 예제는 채점하지 않는다.