Online JudgeProblem SetAuthorsOnline ContestsUser
Web Board
Home Page
F.A.Qs
Statistical Charts
Problems
Submit Problem
Online Status
Prob.ID:
Register
Update your info
Authors ranklist
Current Contest
Past Contests
Scheduled Contests
Award Contest
User ID:
Password:
  Register
Language:
Striking Ball
Time Limit: 1000MSMemory Limit: 65536K
Total Submissions: 136Accepted: 25

Description

Little Tom loves playing games. One day he downloads a computer game called 'Striking Ball', which makes him very excited. The game field is a rectangular window, and there are many rectangular bricks of the same size in it. A ‘striking ball’ is bouncing in that window. Every brick is placed parallel to the window’s bottom line. At the beginning of the game, little Tom may put the ball at any position on the bottom line of the window and launch it in any direction upwards. Then the striking ball will change its direction only when it hits the bricks or the border of the window. The ball changes its direction according to the light reflection rule. A brick will disappear immediately when hit by the ball. Every striking at the brick brings little Tom the amount of points which the brick owns. Once the striking ball touches the bottom line, the game ends.
Given the launching position and direction of the striking ball, little Tom wants to know how many points in total he will get during the game.
You may ignore the volume of the ball and just regard it as a point.
This is a picture showing that a ball is launched from coordinate X on the bottom line of the window, and the launch angle is α.

Input

Input contains multiple test cases. Each test case means one game. It starts with five numbers: W, H, w, h, n(0<W, H<=1000, 0<w<W, 0<h<H, n<=500) which stands for the width and height of the window, the width and height of the bricks and the number of bricks in the window.(The input ends by a line with five zeros) The next n lines shows the information of n bricks in the following format: xi, yi, pi(0<=xi<=W-w, 0<=yi<=H-h, 0<pi<=100). The first two float numbers stand for the coordinate of the lower left corner of the brick and the last integer stands for the points the brick owns. The last line contains two float number X, α(0<=X<=W, 0<α<180), which stands for the launch X-coordinate and launch angle (in degrees) of the striking ball.

It guarantees that
At any time, the distances between the ball and any corners of the bricks are always larger than 0.000001. Also, the distances between the ball and the window corners are always larger than 0.000001.

Output

For each test cases output one line with the total points that little Tom will get.

Sample Input

3 3 2 1 1
0.5 1 100
0 42
5 5 0.7 1 6
0.4 2.5 1
1.1 2.5 2
1.8 2.5 4
2.5 2.5 8
3.2 2.5 16
3.9 2.5 32
2.55 45
0 0 0 0 0

Sample Output

100
38

Source

[Submit]   [Go Back]   [Status]   [Discuss]

Home Page   Go Back  To top


All Rights Reserved 2003-2013 Ying Fuchen,Xu Pengcheng,Xie Di
Any problem, Please Contact Administrator