[BZOJ1192][HNOI2006]鬼谷子的钱袋 数学
Posted halfrot
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[BZOJ1192][HNOI2006]鬼谷子的钱袋 数学相关的知识,希望对你有一定的参考价值。
题目链接:http://www.lydsy.com/JudgeOnline/problem.php?id=1192
大水题,把m分成二的幂次方和。
1 #include<cstdio> 2 #include<cstring> 3 #include<algorithm> 4 using namespace std; 5 int main(){ 6 int m; 7 scanf("%d",&m); 8 int sum=1,ans=0; 9 while(1){ 10 ans++; 11 sum<<=1; 12 if(m<sum){ 13 printf("%d\n",ans); 14 return 0; 15 } 16 } 17 }
以上是关于[BZOJ1192][HNOI2006]鬼谷子的钱袋 数学的主要内容,如果未能解决你的问题,请参考以下文章