您的位置:首页 > 其它

poj 3100 && zoj 2818 ( Root of the Problem ) (睡前一水)

2015-01-25 23:15 483 查看
链接:click here

题意:

Given positive integers B and N, find an integer A such that AN is as close as possible to B. (The result A is an approximation to the Nth root of B.) Note that AN may be less than, equal to, or greater than B.

.给你B和N,求个整数A使得A^n最接近B

不解释,代码:

//zoj 2818  poj 3100

#include <stdio.h>
#include <stdlib.h>
#include <iostream>
#include <string.h>
#include <math.h>
using namespace std;
int main()
{
    double b,n;
    while(cin>>b>>n&&b&&n)
    {
        int a=(int )pow(b,1/n);
        //cout<<pow(a,n)<<endl;
        if(b-pow(a,n)<pow(a+1,n)-b) cout<<a<<endl;
        else cout<<a+1<<endl;
    }
    return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: