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

hdu1060

时间:2014-06-13 15:29:06      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:class   code   string   cti   name   type   

求N^N最左边的一位

1.转化为小数,快速幂

2.数学公式

************************************************

#include<cstdio>
#include<cmath>
using namespace std;

long long n;
double n0;

int cal(long long x)
{
    return (int)log10(x);
}

int ksm(double a,long long b)
{
    double tmp=a,ret=1.0;
    while(b)
    {
        if(b & 1)
        {
            ret*=tmp;
            if(ret>10)ret/=10;
        }
        tmp*=tmp;
        if(tmp>10)tmp/=10;
        b>>=1;
    }
    return (int)ret;
}

int main()
{
    int t;
    scanf("%d",&t);
    while(t--)
    {
        scanf("%lld",&n);
        n0=(double)n/pow(10.0,cal(n));
        int ans=ksm(n0,n);
        printf("%d\n",ans);
    }
    return 0;
}

************************************************

************************************************

#include<cstdio>
#include<cmath>
using namespace std;

int cal(long long x)
{
    long long tmp1=(long long)(log10(x)*x);
    double tmp2=x*log10(x);
    double tmp=tmp2-tmp1;
    int ret=(int)pow(10.0,tmp);
    return ret;
}

int main()
{
    int t;
    scanf("%d",&t);
    while(t--)
    {
        long long n;
        scanf("%lld",&n);
        int ans=cal(n);
        printf("%d\n",ans);
    }
    return 0;
}

************************************************

 

hdu1060,布布扣,bubuko.com

hdu1060

标签:class   code   string   cti   name   type   

原文地址:http://www.cnblogs.com/MobileRobot/p/3784769.html

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