题意

将正整数N拆分成若干个正整数之和,问有多少种不重复的拆分方案。

\(n \leq 5000\)

分析

用f(i,j)表示将i拆成若干个数字,最大的那个数字(即最后一个数)不超过j的方案数。
转移有两种情况,第一种是最大的数字不取j,第二种是取j
\[f(i,j)=f(i,j-1)+f(i-j,j)\]
时间复杂度\(O(N^2)\)

然后就可以做了吗?稍微分析一下发现需要高精度,那么空间复杂度是\(O(W \cdot N^2)\)的,W=100。
显然不行。
考虑压位高精,每个整数存8位,W=10,算了一下空间是953MB

考虑更换枚举顺序,外层先枚举j,发现满足正确性。
所以空间就可以降一维。

代码

  1. #include<cstdlib>
  2. #include<cstdio>
  3. #include<cmath>
  4. #include<cstring>
  5. #include<ctime>
  6. #include<iostream>
  7. #include<string>
  8. #include<vector>
  9. #include<list>
  10. #include<deque>
  11. #include<stack>
  12. #include<queue>
  13. #include<map>
  14. #include<set>
  15. #include<bitset>
  16. #include<algorithm>
  17. #include<complex>
  18. #pragma GCC optimize ("O0")
  19. using namespace std;
  20. template<class T> inline T read(T&x)
  21. {
  22. T data=0;
  23. int w=1;
  24. char ch=getchar();
  25. while(!isdigit(ch))
  26. {
  27. if(ch=='-')
  28. w=-1;
  29. ch=getchar();
  30. }
  31. while(isdigit(ch))
  32. data=10*data+ch-'0',ch=getchar();
  33. return x=data*w;
  34. }
  35. typedef long long ll;
  36. const int INF=0x7fffffff;
  37. const int MAXN=5e3+7;
  38. const int pow10[10]={1,10,100,1000,10000,100000,1000000,10000000,100000000,1000000000};
  39. struct Big
  40. {
  41. int a[10],len; // edit 1
  42. void set(int x)
  43. {
  44. memset(a,0,sizeof(a));
  45. len=1;
  46. a[0]=x;
  47. }
  48. Big(int x=0)
  49. {
  50. set(x);
  51. }
  52. int&operator[](int x)
  53. {
  54. return a[x];
  55. }
  56. friend Big operator+(Big&x,Big&y)
  57. {
  58. Big z;
  59. z.len=max(x.len,y.len);
  60. for(int i=0;i<z.len;++i)
  61. {
  62. z[i]+=x[i]+y[i];
  63. if(z[i]>=1e9)
  64. {
  65. z[i+1]+=z[i]/int(1e9);
  66. z[i]%=int(1e9);
  67. }
  68. }
  69. if(z[z.len])
  70. ++z.len;
  71. return z;
  72. }
  73. void out()
  74. {
  75. for(int i=len-1;i>=0;--i)
  76. {
  77. if(i!=len-1)
  78. for(int j=8;j>=1;--j) // edit 2
  79. if(a[i]<=pow10[j]-1)
  80. printf("0");
  81. printf("%d",a[i]);
  82. }
  83. }
  84. };
  85. Big f[MAXN]; // edit 4
  86. int main()
  87. {
  88. // freopen("UVA10590.in","r",stdin);
  89. // freopen("UVA10590.out","w",stdout);
  90. f[0].set(1);
  91. for(int i=1;i<=5e3;++i) // edit 3
  92. for(int j=i;j<=5e3;++j)
  93. {
  94. f[j]=f[j]+f[j-i];
  95. }
  96. int n;
  97. while(~scanf("%d",&n))
  98. {
  99. f[n].out();
  100. puts("");
  101. }
  102. // fclose(stdin);
  103. // fclose(stdout);
  104. return 0;
  105. }

Hint

注意压位高精输出的时候要补全前导0.

UVA10590 Boxes of Chocolates Again的更多相关文章

  1. Uva 10590 Boxes of Chocolates Again

    题面戳这里 dp的姿势有两种(都保证了拆分的有序): \(f_{i,j}\)表示拆分中最大数为\(j\),和为\(i\)的方案数.转移\[f_{i,j} = \sum_{k = 1}^j f_{i-j ...

  2. ACM - 动态规划专题 题目整理

    CodeForces 429B  Working out 预处理出从四个顶点到某个位置的最大权值,再枚举相遇点,相遇的时候只有两种情况,取最优解即可. #include<iostream> ...

  3. Fedora 24 Gnome Boxes 无法ping通网络

    安装Fedora 24在试用虚拟机时发现无法ping通外网. 我傻傻地以为是软件问题. 问题描述: 尝试ping程序来测试网络连通性: (我之前也是ping百度,后来在为了少打字百度了一些比较短的域名 ...

  4. Problem B Boxes in a Line

     省赛B题....手写链表..其实很简单的.... 比赛时太急了,各种手残....没搞出来....要不然就有金了...注:对相邻的元素需要特判..... Problem B Boxes in a Li ...

  5. Codeforces Round #229 (Div. 2) C. Inna and Candy Boxes 树状数组s

    C. Inna and Candy Boxes   Inna loves sweets very much. She has n closed present boxes lines up in a ...

  6. boxes

    boxes [英][bɒksɪz][美][bɑ:ksɪz] n.盒( box的名词复数 ); 一盒; 电视; 小亭; v.把…装入盒[箱,匣]中( box的第三人称单数 ); 拳击;   以上结果来自 ...

  7. Brute Force - B. Candy Boxes ( Codeforces Round #278 (Div. 2)

    B. Candy Boxes Problem's Link:   http://codeforces.com/contest/488/problem/B Mean: T题目意思很简单,不解释. ana ...

  8. UVa 103 - Stacking Boxes(dp求解)

    题目来源:https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=3&pa ...

  9. [CareerCup] 9.10 Stack Boxes 垒箱子问题

    9.10 You have a stack of n boxes, with widths w., heights hir and depths drThe boxes cannot be rotat ...

随机推荐

  1. (转)sublime text3 3176激活

    更改hosts:sudo vim /private/etc/hosts 127.0.0.1 www.sublimetext.com 127.0.0.1 license.sublimehq.com 激活 ...

  2. SQL调优(SQL TUNING)之远程支持完成性能大幅优化

    前几天,一个朋友找到我,说一个SQL性能有问题,看看能不能优化,下面为过程: 雪豹 9:35:10 在吗 兰花岛主 15:07:39 忙忘了,有事儿? 雪豹 15:07:49 嗯 雪豹 15:07:5 ...

  3. AIX5L内存监控和调整

    1.ps ps gv | head -n 1; ps gv | egrep -v "RSS" | sort +6b -7 -n -r PID      TTY    STAT    ...

  4. Deep Belief Network简介——本质上是在做逐层无监督学习,每次学习一层网络结构再逐步加深网络

    from:http://www.cnblogs.com/kemaswill/p/3266026.html 1. 多层神经网络存在的问题 常用的神经网络模型, 一般只包含输入层, 输出层和一个隐藏层: ...

  5. spark streaming 入门例子

    spark streaming 入门例子: spark shell import org.apache.spark._ import org.apache.spark.streaming._ sc.g ...

  6. web移动端生产环境调试

    如果是开发环境,比较容易: 最笨的方法是手机开QQ电脑开QQ把做好的页面传给手机QQ直接打开.. 参考: http://blog.allenm.me/2014/05/mobile-web-debug- ...

  7. ReactJS环境搭建

    1.ReactJs 需要依赖nodejs环境,如果没有安装nodejs的话,需要安装.下载地址:https://nodejs.org/en/download/ 下载下来之后,安装windows版本的m ...

  8. kill word out e ef en em

        1● e 2● ef 出,出来   3● en 4● em 使~进入状态,包围,进入~之中  

  9. UVALive 5984

    题目链接:Save the Students! #include<stdio.h> #include<string.h> #include<iostream> #i ...

  10. sgu 121. Bridges painting 列举情况 难度:1

    121. Bridges painting time limit per test: 0.25 sec. memory limit per test: 4096 KB New Berland cons ...