#P4874. Cannon
Cannon
Cannon
题面翻译
题目大意:
有一门大炮,坐标在,和堵墙,现在大炮要射发炮弹,每发炮弹的初始速度是一样的,射击角度为,假设射击后经过时间,重力加速度,则有:
给定堵墙墙顶坐标,墙垂直于坐标轴,炮弹如果打到墙上,就会卡住;如果掉到地上,也不会再滚动。
求这发炮弹最终的位置
输入格式:
第一行两个整数,即
下面行,每行一个实数,即每发炮弹的
再一行,一个整数,即
下面行,每行两个实数,即
输出格式:
行,每行两个实数,即这发炮弹最后的坐标,误差不超过即可
感谢@守望 提供翻译
题目描述
Bertown is under siege! The attackers have blocked all the ways out and their cannon is bombarding the city. Fortunately, Berland intelligence managed to intercept the enemies' shooting plan. Let's introduce the Cartesian system of coordinates, the origin of which coincides with the cannon's position, the axis is directed rightwards in the city's direction, the axis is directed upwards (to the sky). The cannon will make more shots. The cannon balls' initial speeds are the same in all the shots and are equal to , so that every shot is characterized by only one number which represents the angle at which the cannon fires. Due to the cannon's technical peculiarities this angle does not exceed angles ( ). We disregard the cannon sizes and consider the firing made from the point .
The balls fly according to the known physical laws of a body thrown towards the horizon at an angle:
Think of the acceleration of gravity as equal to .
Bertown defends walls. The -th wall is represented as a vertical segment . When a ball hits a wall, it gets stuck in it and doesn't fly on. If a ball doesn't hit any wall it falls on the ground ( ) and stops. If the ball exactly hits the point , it is considered stuck.
Your task is to find for each ball the coordinates of the point where it will be located in the end.
输入格式
The first line contains integers and ( ) which represent the number of shots and the initial speed of every ball. The second line contains space-separated real numbers ( 0<alpha_{i}<π/4 ) which represent the angles in radians at which the cannon will fire. The third line contains integer ( ) which represents the number of walls. Then follow lines, each containing two real numbers and ( ) which represent the wall’s coordinates. All the real numbers have no more than 4 decimal digits. The walls may partially overlap or even coincide.
输出格式
Print lines containing two real numbers each — calculate for every ball the coordinates of its landing point. Your answer should have the relative or absolute error less than .
样例 #1
样例输入 #1
2 10
0.7853
0.3
3
5.0 5.0
4.0 2.4
6.0 1.9
样例输出 #1
5.000000000 2.549499369
4.000000000 0.378324889
样例 #2
样例输入 #2
2 10
0.7853
0.3
2
4.0 2.4
6.0 1.9
样例输出 #2
10.204081436 0.000000000
4.000000000 0.378324889