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

NYOJ 46 最小乘法次数

时间:2014-08-10 10:16:10      阅读:317      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   io   div   line   

题目链接:http://acm.nyist.net/JudgeOnline/problem.php?pid=46

 

用类似于快速幂的方法做,注意1的时候是0;

 

#include <iostream>
using namespace std;

int main()
{
    int ase;
    int num;
    int res;
    cin>>num;
    
    while(num--)
    {
        res = 0;
        cin>>ase;
        if(ase==1)
        {
            cout<<0<<endl;
            continue;
        }
        while(ase!=1)
        {
            if(ase%2==1)
                res+=2;
            else
                res++;
            ase = ase/2;
        }
        cout<<res<<endl;
    }
    return 0;
}

 

NYOJ 46 最小乘法次数,布布扣,bubuko.com

NYOJ 46 最小乘法次数

标签:style   blog   http   color   os   io   div   line   

原文地址:http://www.cnblogs.com/ltwy/p/3902402.html

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