UVA 11880 Ball in a Rectanglefds

来源:互联网 发布:矩阵 方阵 编辑:程序博客网 时间:2024/05/16 01:27

运动问题,有边界,入射角等于出射角

所以x、y分别按周期变化

Description

Download as PDF
Input: Standard Input Output: Standard Output

  There is a rectangle on the cartesian plane, with bottom-left corner at (0,0) and top-right corner at (LW). There is a ball centered at (x,y), with radius=R, shown below

\epsfbox{p11880.eps}

At time 0, the ball starts to move along a ray with polar angle a (the angle from positive x-axis to the ray, rotating counter-clockwise). When hitting the rectangle boundary, the reflex angle always equals to the incidence angle. The ball's velocity is always v (i.e. it never changes when hitting the rectangle). Where is the center of the ball at time s?

Input 

There will be at most 25 test cases, each contains a line with 8 integers LWxyRavs ( 100$ \le$LW$ \le$1091$ \le$R$ \le$5R$ \le$x$ \le$L - RR$ \le$y$ \le$W - R0$ \le$a < 3601$ \le$vs$ \le$109), as stated above. The input terminates with L = W = x = y = R = a = v = s = 0, which should not be processed.

Output 

For each test case, output a line containing two floating-point numbers xy, rounded to two decimal points, indicating that the center of ball will be at (xy) at time s.

Sample Input 

100 100 80 10 5 90 2 23110 100 70 10 5 180 1 99990 0 0 0 0 0 0 0

Sample Output 

80.00 56.0071.00 10.00



Problemsetter: Rujia Liu, Special Thanks: Yiming Li, Shamim Hafiz & Sohel Hafiz

0 0