CF141B.Hopscotch

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

So nearly half of the winter is over and Maria is dreaming about summer. She's fed up with skates and sleds, she was dreaming about Hopscotch all night long. It's a very popular children's game. The game field, the court, looks as is shown in the figure (all blocks are square and are numbered from bottom to top, blocks in the same row are numbered from left to right). Let us describe the hopscotch with numbers that denote the number of squares in the row, staring from the lowest one: 1-1-2-1-2-1-2-(1-2)..., where then the period is repeated (1-2).

The coordinate system is defined as shown in the figure. Side of all the squares are equal and have length aa .

Maria is a very smart and clever girl, and she is concerned with quite serious issues: if she throws a stone into a point with coordinates (x,y)(x,y) , then will she hit some square? If the answer is positive, you are also required to determine the number of the square.

It is believed that the stone has fallen into the square if it is located strictly inside it. In other words a stone that has fallen on the square border is not considered a to hit a square.

输入格式

The only input line contains three integers: aa , xx , yy , where aa ( 1<=a<=1001<=a<=100 ) is the side of the square, xx and yy ( 106<=x<=106,0<=y<=106-10^{6}<=x<=10^{6},0<=y<=10^{6} ) are coordinates of the stone.

输出格式

Print the number of the square, inside which the stone fell. If the stone is on a border of some stone or outside the court, print "-1" without the quotes.

输入输出样例

  • 输入#1

    1 0 0
    

    输出#1

    -1
    
  • 输入#2

    3 1 1
    

    输出#2

    1
    
  • 输入#3

    3 0 10
    

    输出#3

    5
    
  • 输入#4

    3 0 7
    

    输出#4

    -1
    
  • 输入#5

    3 4 0
    

    输出#5

    -1
    
首页