POJ 2109 Power of Cryptography (用double避免高精度)

时间:2021-08-21 23:24:24

题目链接:http://poj.org/problem?id=2109

原来集训的时候做过,还有印象,在POJ终于1Y了一回。

 

这个本来是个大数,但是这题是利用double来避免了大数,虽然double的有效位为16位,但是指数底数分别存储使得double的存储范围达到了10^308

所以本来挺难的一题就这样水过了。

 

代码:

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

int main()
{
double a,b;
while (~scanf ("%lf%lf",&a,&b))
{
int ans = (int)(pow (b,1.0 / a) + 0.5); //注意四舍五入

printf ("%d\n",ans);
}
return 0;
}