整数拆分
Posted 水明
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了整数拆分相关的知识,希望对你有一定的参考价值。
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 }
以上是关于整数拆分的主要内容,如果未能解决你的问题,请参考以下文章
为啥将拆分为 wav 文件的旋律转换为拆分的 mp3 会在片段边界处产生不好的声音?
pandas GroupBy上的方法apply:一般性的“拆分-应用-合并”