码迷,mamicode.com
首页 > 其他好文 > 详细

推公式 HDU 2552

时间:2016-12-29 22:47:43      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:hdu   公式   span   max   scanf   double   等于   mat   namespace   

T 给你2个值 求另外一个 需要推一下

tan(a+b)=(tan(a)+tan(b))/(1-tan(a)*tan(b));

等式左右取tan

tan(atan(a))=a

1/s=tan(...)=(1/u+1/v)/(1-1/(uv));

最后推出 那个式子等于1

#include<stdio.h>
#include<string.h>
#include<algorithm>
#include<math.h>

using namespace std;

#define MAXN 105

int main()
{
    int t;
    scanf("%d",&t);
    while(t--)
    {
        double s,u;
        scanf("%lf%lf",&s,&u);
        printf("%d\n",1);
    }
    return 0;
}

 

推公式 HDU 2552

标签:hdu   公式   span   max   scanf   double   等于   mat   namespace   

原文地址:http://www.cnblogs.com/cherryMJY/p/6234770.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!