程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> 關於C++ >> ZOJ 3203 Light Bulb (三分+計算幾何)

ZOJ 3203 Light Bulb (三分+計算幾何)

編輯:關於C++

 
第一發三分。三分的原理還是挺簡單的。
代碼如下:

#include 
#include 
#include 
#include 
#include 
#include 
#include
#include 
#include 
using namespace std;
#define LL __int64
#define pi acos(-1.0)
#define root 1, n, 1
#define lson l, mid, rt<<1
#define rson mid+1, r, rt<<1|1
//#pragma comment(linker, /STACK:1024000000)
const int mod=1e9+7;
const int INF=0x3f3f3f3f;
const double eqs=1e-9;
const int MAXN=30000+10;
double dist(double H, double h, double D, double x)
{
        return D-x+H-D*(H-h)/x;
}
double TS(double H, double h, double D)
{
        double l=D-D*h/H, r=D, ll, rr, ans1, ans2;
        while(r-l>=eqs){
                ll=(2*l+r)/3;rr=(2*r+l)/3;
                ans1=dist(H,h,D,ll);
                ans2=dist(H,h,D,rr);
                if(ans1>ans2) r=rr;
                else l=ll;
        }
        return dist(H,h,D,l);
}
int main()
{
        int T;
        double H, h, d;
        scanf(%d,&T);
        while(T--){
                scanf(%lf%lf%lf,&H,&h,&d);
                printf(%.3f
,TS(H,h,d));
        }
        return 0;
}
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved