CF494E.Sharti

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

During the last 24 hours Hamed and Malek spent all their time playing "Sharti". Now they are too exhausted to finish the last round. So they asked you for help to determine the winner of this round.

"Sharti" is played on a n×nn×n board with some of cells colored white and others colored black. The rows of the board are numbered from top to bottom using number 11 to nn . Also the columns of the board are numbered from left to right using numbers 11 to nn . The cell located at the intersection of ii -th row and jj -th column is denoted by (i,j)(i,j) .

The players alternatively take turns. In each turn the player must choose a square with side-length at most kk with its lower-right cell painted white. Then the colors of all the cells in this square are inversed (white cells become black and vice-versa). The player who cannot perform a move in his turn loses.

You know Hamed and Malek are very clever and they would have played their best moves at each turn. Knowing this and the fact that Hamed takes the first turn, given the initial board as described in the input, you must determine which one of them will be the winner.

输入格式

In this problem the initial board is specified as a set of mm rectangles. All cells that lie inside at least one of these rectangles are colored white and the rest are colored black.

In the first line of input three space-spereated integers n,m,k(1kn109,1m5×104)n,m,k(1\le k\le n\le 10^9,1\le m\le 5\times 10^4) follow, denoting size of the board, number of rectangles and maximum size of the turn square during the game, respectively.

In ii - th line of the next mm lines four space-seperated integers ai,bi,ci,di(1aicin,1bidin)a_i,b_i,c_i,d_i(1≤a_i≤c_i≤n, 1≤b_i≤d_i≤n) are given meaning that ii - th rectangle determining the initial board is a rectangle with upper-left cell at (ai,bi)(a_i,b_i) and lower-right cell at (ci,di)(c_i,d_i).

输出格式

If Hamed wins, print "Hamed", otherwise print "Malek" (without the quotes).

输入输出样例

  • 输入#1

    5 2 1
    1 1 3 3
    2 2 4 4
    

    输出#1

    Malek
    
  • 输入#2

    12 5 7
    3 4 5 6
    1 2 1 2
    4 5 9 9
    8 6 12 10
    12 4 12 4
    

    输出#2

    Hamed
    
首页