当前位置:   article > 正文

* Hopscotch_hopscotch csdn

hopscotch csdn

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

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), 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.

Input

The only input line contains three integers: a, x, y, where a (1 ≤ a ≤ 100) is the side of the square, x and y ( - 106 ≤ x ≤ 106, 0 ≤ y ≤ 106) are coordinates of the stone.

Output

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.

Example
Input
1 0 0
Output
-1
Input
3 1 1
Output
1
Input
3 0 10
Output
5
Input
3 0 7
Output
-1
Input
3 4 0
Output
-1
还以为就图中显示的几个方框,原来上面不断循环出现,除去第一个,3个为一组不断循环
code:
  1. #include<cstdio>
  2. #include<cmath>
  3. using namespace std;
  4. int main()
  5. {
  6. int a,x,y;
  7. scanf("%d %d %d",&a,&x,&y);
  8. double b = a* 1.0/2;
  9. if(y<=a&&abs(x)>=b|| y%a== 0||(x==0&&y==0)) printf("-1\n");
  10. else if(y<=a&&abs(x)<b) printf("1\n");
  11. else{
  12. y =y/a;
  13. if(y%2!= 0){//奇数个a
  14. if(abs(x)>=b) printf("-1\n");
  15. else printf("%d\n",y/2*3+2);
  16. }
  17. else{
  18. if(abs(x)>=a||x==0) printf("-1\n");
  19. else if(x<0) printf("%d\n",y/2*3);
  20. else printf("%d\n",y/2*3+1);
  21. }
  22. }
  23. return 0;
  24. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/722793
推荐阅读
相关标签
  

闽ICP备14008679号