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

HDU 1207

时间:2015-10-31 15:32:58      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1207

 

四柱汉诺塔问题

当 r = (sqrt(8*n+1)-1)/2 时,

存在 count = (n-(r*r-r+2)/2)*(int)pow(2,r)+1 ,此时所需的步骤最少。

 

技术分享
 1 #include<stdio.h>
 2 #include<math.h>
 3 
 4 int main()
 5 {
 6     int n,r;
 7     long long int count;
 8     while(scanf("%d",&n)!=EOF)
 9     {
10         r = (sqrt(8*n+1)-1)/2;
11         count = (n-(r*r-r+2)/2)*(int)pow(2,r)+1;
12         printf("%I64d\n",count);
13     }
14     return 0;
15 }
View Code

 

HDU 1207

标签:

原文地址:http://www.cnblogs.com/52Cassie/p/4925563.html

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