HDU 2298 Toxophily 二分 推公式

来源:互联网 发布:怎样关闭淘宝网店 编辑:程序博客网 时间:2024/05/22 08:02

Toxophily

Time Limit: 1000MS Memory Limit: 32768KB 64bit IO Format: %I64d & %I64u

Submit

Status

Description

The recreation center of WHU ACM Team has indoor billiards, Ping Pang, chess and bridge, toxophily, deluxe ballrooms KTV rooms, fishing, climbing, and so on.
We all like toxophily.

Bob is hooked on toxophily recently. Assume that Bob is at point (0,0) and he wants to shoot the fruits on a nearby tree. He can adjust the angle to fix the trajectory. Unfortunately, he always fails at that. Can you help him?

Now given the object’s coordinates, please calculate the angle between the arrow and x-axis at Bob’s point. Assume that g=9.8N/m.

Input

The input consists of several test cases. The first line of input consists of an integer T, indicating the number of test cases. Each test case is on a separated line, and it consists three floating point numbers: x, y, v. x and y indicate the coordinate of the fruit. v is the arrow’s exit speed.
Technical Specification

  1. T ≤ 100.
  2. 0 ≤ x, y, v ≤ 10000.

Output

For each test case, output the smallest answer rounded to six fractional digits on a separated line.
Output “-1”, if there’s no possible answer.

Please use radian as unit.

Sample Input

3
0.222018 23.901887 121.909183
39.096669 110.210922 20.270030
138.355025 2028.716904 25.079551

Sample Output

1.561582
-1
-1

#include<iostream>#include<stdio.h>#include<cstring>#include<vector>#include<math.h>#include<sstream>#include<set>#include<map>#include<iomanip>#include<algorithm>using namespace std;const double pi=acos(-1.0);const double MIN=0.000000001;double x,y,v;double F(double theta){    double result=tan(theta)*x-x*x/(2*v*v*cos(theta)*cos(theta))*9.8-y;    return result;}int main(){    cout<<fixed<<setprecision(6);    int T;    cin>>T;    while (T--)    {        cin>>x>>y>>v;        double l=0;        double h=asin(1);        double mid;        double temp;        while (h-l>=MIN)        {            mid=(l+h)/2;            temp=F(mid);            if (temp>0)                h=mid-MIN;            else                l=mid+MIN;        }        mid=(l+h)/2;        if (abs(mid-asin(1))<=MIN)            cout<<-1<<endl;        else            cout<<mid<<endl;    }    return 0;}
0 0
原创粉丝点击