CF982E.Billiard

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Consider a billiard table of rectangular size n×mn \times m with four pockets. Let's introduce a coordinate system with the origin at the lower left corner (see the picture).

There is one ball at the point (x,y)(x, y) currently. Max comes to the table and strikes the ball. The ball starts moving along a line that is parallel to one of the axes or that makes a 4545^{\circ} angle with them. We will assume that:

  1. the angles between the directions of the ball before and after a collision with a side are equal,
  2. the ball moves indefinitely long, it only stops when it falls into a pocket,
  3. the ball can be considered as a point, it falls into a pocket if and only if its coordinates coincide with one of the pockets,
  4. initially the ball is not in a pocket.

Note that the ball can move along some side, in this case the ball will just fall into the pocket at the end of the side.

Your task is to determine whether the ball will fall into a pocket eventually, and if yes, which of the four pockets it will be.

输入格式

The only line contains 66 integers nn , mm , xx , yy , vxv_x , vyv_y ( 1n,m1091 \leq n, m \leq 10^9 , 0xn0 \leq x \leq n ; 0ym0 \leq y \leq m ; 1vx,vy1-1 \leq v_x, v_y \leq 1 ; (vx,vy)(0,0)(v_x, v_y) \neq (0, 0) ) — the width of the table, the length of the table, the xx -coordinate of the initial position of the ball, the yy -coordinate of the initial position of the ball, the xx -component of its initial speed and the yy -component of its initial speed, respectively. It is guaranteed that the ball is not initially in a pocket.

输出格式

Print the coordinates of the pocket the ball will fall into, or 1-1 if the ball will move indefinitely.

输入输出样例

  • 输入#1

    4 3 2 2 -1 1
    

    输出#1

    0 0
  • 输入#2

    4 4 2 0 1 1
    

    输出#2

    -1
  • 输入#3

    10 10 10 1 -1 0
    

    输出#3

    -1

说明/提示

The first sample:

The second sample:

In the third sample the ball will never change its yy coordinate, so the ball will never fall into a pocket.

首页