ZOJ2748-Free Kick

来源:互联网 发布:p2p网络运营招聘 编辑:程序博客网 时间:2024/06/05 22:46

Free Kick

Time Limit: 2 Seconds      Memory Limit: 65536 KB

In a soccer game, a direct free kick is also awarded to the opposing team if a player commits any of the offences.

A direct free kick in an immediate distance is a nightmare of the goalie. In order to help their goalkeeper, the defenders often choose to stand side by side between the free kick position and the goal, just like a straight "WALL". The goalkeeper expects the "WALL" can receive the shooting angle as much as possible. However, there are only 11 players in a team and some of them must pay attention to other offenders, so the defenders to make up the "WALL" are quite limited.

Let's make the problem easier on a simplified field map, shown as above. The two ends of the goal locate at (-a,0) and (a,0) respectively, and the free kick position is (x, y). Assuming the body width of every defender is always W, your task is to determine how many defenders are required at the least to make up the "WALL", so that they can help their goalie receive the shooting angle. According to FIFA's law, all the defender must keep a distance not less than D from the free kick position. The goalie will feel safe if the remaining shooting angle after the "WALL" is strictly less than A degree.


Input

The input consists of several test cases. In each case, there are six numbers in a single line, indicating aWxyD and A respectively.

Constraints:

  • aWDA are all positive numbers;
  • The distance between the goal and the free kick position is guaranteed greater than D;
  • The absolute value of each non-zero number is in the range [10-6, 106].

Proceed until the end of file.


Output

For each case, print an integral number on a single line, which denotes the minimal number of defenders is required to make the goalie safe. Note that this number may be greater than 11.


Sample Input

3.66 0.5 5 20.2 9.15 103.66 0.5 -5 -20.3 9.15 10

Sample Output

43


Author: JIANG, Hao
Source: Zhejiang Provincial Programming Contest 2006



题意:给出射手位置和球门位置,人的宽度和人墙距离射手最小距离及能让守门员感到安全的角度和(安全的角度和是射手能射的角度和),求最少安排几个人的人墙

解题思路:可以证明当人墙左右两点与射手所成三角形为等腰三角形时,人墙长度最短,ceil函数是向上取整


#include <iostream>#include <cstdio>#include <cstring>#include <cmath>#include <algorithm>#include <queue>#include <set>#include <stack>#include <map>#include <functional>#include <bitset>#include <string>using namespace std;#define LL long long#define INF 0x3f3f3f3fconst double pi=acos(-1.0);struct point{    double x,y;};double dis(point v1,point v2){    return sqrt((v1.x-v2.x)*(v1.x-v2.x)+(v1.y-v2.y)*(v1.y-v2.y));}int main(){    double a,W,D,A;    point v1,v2,u;    while(~scanf("%lf%lf%lf%lf%lf%lf",&a,&W,&u.x,&u.y,&D,&A))    {        A=A/180*pi;        v1.x=-a,v1.y=0;        v2.x=a,v2.y=0;        double X=dis(u,v1);        double Y=dis(u,v2);        double Z=dis(v1,v2);        double B= acos((X*X+Y*Y-Z*Z)/(2*X*Y));        double C=(B-A)/2;        double w=D*tan(C);        w*=2;        int ans=ceil(w/W);        printf("%d\n",max(ans,0));    }    return 0;}

0 0
原创粉丝点击