SPOJ Use of Function Arctan

F - Use of Function Arctan
Time Limit:2000MS     Memory Limit:1572864KB     64bit IO Format:%lld & %llu
Submit  Status  Practice  SPOJ ARCTAN

Description

It's easy to know that arctan(1/2)+arctan(1/3)=arctan(1).The problem is,to some fixed number A,you have to write a program to calculate the minimum sum B+C.A,B and C are all positive integers and satisfy the equation below:

arctan(1/A)=arctan(1/B)+arctan(1/C)

Input

The first line contains a integer number T.T lines follow,each contains a single integer A, 1<=A<=60000.

Output

T lines,each contains a single integer which denotes to the minimum sum B+C.

Sample Input

1
1

Sample Output

5

Hint

Some new test data has been added on Feb.15, 2009, 36 users lose their Accepted.

Source limit:    256B
Languages   :    All except: C99 strict ERL JS


题意:求满足等式的最小的B+C的值。

可以等式两边同时求tan值,

arctan(1/A)=arctan(1/B)+arctan(1/C) ,则左右同时取tan的值,便将等式还原为 1/A=(1/B+1/C) / (1-1/B*1/C)  
继续化简为A=(B*C-1)/(B+C) 。 设 B=A+m  ,  C=A+n带入上面的表达式化简得到m*n=A*A+1, 而要求的是B+C=2*A+m+n的
最小值,知m+n>=2*sqrt(m*n)=2*sqrt(A*A+1),要取得‘=’号需m=n=sqrt(A*A+1),因A,B,C都为 整数,所以m,n也必须为整数
此时需要的是枚举m=sqrt(A*A+1)到1,得到第一个能整除sqrt(A*A+1)的m便是需要的值。
这题代码长度限制的很严。
#include <stdio.h>
#include <cmath>
int main()
{int T;long long a,b,c,n,m;scanf("%d",&T);
    while(T--)
    {scanf("%lld",&a);long long t=(long long)sqrt((a*a+1)*1.0);while((a*a+1)%t)t--;printf("%lld\n",2*a+t+(a*a+1)/t);
    }
    return 0;
}








你可能感兴趣的:(SPOJ Use of Function Arctan)