數學題uva107-The Cat in the Hat

一道純數學題,但是老師把這到題歸爲tree不知道是爲什麼

#include <iostream>
#include <cstdio>
#include <cmath>
#define N 0.1
using namespace std;
int main()
{
    int n,m;
    while(~scanf("%d%d",&n,&m)&& (n!=0 || m!=0)){
        int b=32,s=0;
        int k=(b+s)/2;
        while(fabs(pow(pow(m*1.0,1.0/k)+1,k)-n)>N && b-s>0){
            if(pow(pow(m*1.0,1.0/k)+1,k)-n<N){
                s=(b+s)/2+1;
                k=(s+b)/2;
            }
            else{
                b=(s+b)/2;
                k=(s+b)/2;
            }
        }
        int num=0;
        double x=1.0/k;
        double y=pow(1.0*m,x);
        int cn;
        if(y-(int)y>0.000000001){
            cn=y+1;
        }
        else{
            cn=y;
        }
        int height=0;
        for(int i=0;i<k;i++)
        {
            int po=pow(cn*1.0,i);
            num+=po;
            height+=n*po;
            n/=(cn+1);

        }
        height+=m;
        cout<<num<<" "<<height<<endl;

    }
    return 0;
}


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章