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

整数拆分

时间:2017-08-17 10:37:06      阅读:102      评论:0      收藏:0      [点我收藏+]

标签:int   ace   lan   end   style   一个   cout   ret   ons   

wiki上看到了一个厉害的递推式

 1 #include <iostream>
 2 using namespace std;
 3 
 4 int main() {
 5     const int len = 121;
 6     int num[len + 1] = { 1 };
 7 
 8     for (int i = 1; i <= len; ++i)
 9         for (int j = i; j <= len; ++j)
10             num[j] += num[j - i];
11 
12     for (int i = 0; i <= len; i++)
13         cout << i <<   << num[i] << endl;
14     return 0;
15 }

 

整数拆分

标签:int   ace   lan   end   style   一个   cout   ret   ons   

原文地址:http://www.cnblogs.com/shuiming/p/7377501.html

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