题意:长度为n的序列,相邻两个或单独一个可以划分到一个组,每个元素最多处于一个组。

问恰好分割成k(1<=k<=m)段有多少种方案?

标程:

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. typedef long long ll;
  4. const int mod=;
  5. const int rt=;
  6. const int N=;
  7. int l,_n,pos[N],n,k,a[N],b[N],c[N],x1[N],x2[N],x3[N],x4[N],w[N],wn,inv_n;
  8. int ksm(int x,int y)
  9. {
  10. int res=;
  11. while (y) {if (y&) res=(ll)res*x%mod; x=(ll)x*x%mod; y>>=;}
  12. return res;
  13. }
  14. void init(int n)
  15. {
  16. l=;
  17. while ((<<l)<=n) l++;//注意位长的处理,判断条件是(1<<l)<=n
  18. _n=<<l;wn=ksm(rt,<<-l);
  19. w[]=;inv_n=ksm(_n,mod-);
  20. for (int i=;i<_n;i++)
  21. w[i]=(ll)w[i-]*wn%mod,pos[i]=(i&)?pos[i-]|(<<(l-)):pos[i>>]>>;
  22. }
  23. void fft(int *a,int op)
  24. {
  25. for (int i=;i<_n;i++) if (i<pos[i]) swap(a[i],a[pos[i]]);
  26. int len=,id=_n;
  27. for (int i=;i<l;i++)
  28. {
  29. int wn=w[id>>=];
  30. for (int j=;j<_n;j+=len*)
  31. for (int k=j,w=;k<j+len;k++)
  32. {
  33. int l=a[k],r=(ll)a[k+len]*w%mod;
  34. a[k]=((ll)l+r)%mod;a[k+len]=((ll)l-r+mod)%mod;
  35. w=(ll)w*wn%mod;
  36. }
  37. len<<=;
  38. }
  39. if (op==-) {
  40. reverse(a+,a+_n);
  41. for (int i=;i<_n;i++) a[i]=(ll)a[i]*inv_n%mod;
  42. }
  43. }
  44. void merge(int *a,int *b,int *c)
  45. {
  46. c[]=;
  47. for (int i=;i<=k;i++) c[i]=((ll)((ll)b[i]+b[i-])%mod+a[i-])%mod;
  48. for (int i=k+;i<_n;i++) c[i]=;
  49. }
  50. void solve(int n)
  51. {
  52. if (n==)
  53. {
  54. a[]=;for (int i=;i<_n;i++) a[i]=;
  55. b[]=b[]=;for (int i=;i<_n;i++) b[i]=;
  56. return;
  57. }
  58. if (n==)
  59. {
  60. a[]=a[]=;for (int i=;i<_n;i++) a[i]=;
  61. b[]=b[]=;b[]=;for (int i=;i<_n;i++) b[i]=;
  62. return;
  63. }
  64. solve(n/-);
  65. merge(a,b,c);
  66. for (int i=k+;i<_n;i++) a[i]=b[i]=;
  67. fft(a,);fft(b,);fft(c,);
  68. for (int i=;i<_n;i++)
  69. {
  70. x1[i]=(ll)a[i]*a[i]%mod;
  71. x2[i]=(ll)b[i]*b[i]%mod;
  72. x3[i]=(ll)a[i]*b[i]%mod;
  73. x4[i]=(ll)b[i]*c[i]%mod;
  74. }
  75. fft(x1,-);fft(x2,-);fft(x3,-);fft(x4,-);
  76. for (int i=;i<_n;i++)//从1开始,注意边界
  77. x2[i]=((ll)x2[i]+x1[i-])%mod,x4[i]=((ll)x4[i]+x3[i-])%mod;
  78. if (n&)
  79. {
  80. merge(x2,x4,b);
  81. for (int i=;i<_n;i++) a[i]=x4[i];
  82. }else
  83. for (int i=;i<_n;i++) a[i]=x2[i],b[i]=x4[i];
  84. }
  85. int main()
  86. {
  87. scanf("%d%d",&n,&k);
  88. init(*k+); solve(n);
  89. for (int i=;i<=k;i++) printf("%d ",a[i]);
  90. puts("");
  91. return ;
  92. }

题解:fft+分治+dp

可以得到递推式:f[i(元素数)][j(段数)]=f[i-1][j-1]+f[i-2][j-1]+f[i-1][j]。

f(n)=f(n-1)*(1+x)+f(n-2)*x.

一个方法是带权斐波那契通项展开,并不会多项式开根。

另一个方法,考虑f(a+b)=f(a)*f(b)+f(a-1)*f(b-1)*x。(根据在a,b处能否断开讨论)

分治下去,f(i),f(i+1)->f(i+2) f(2i+2)=f(i+1)*f(i+1)+f(i)*f(i)*x

f(2i+3)=f(i+1)*f(i+2)+f(i)*f(i+1)*x  f(2i+4)=f(i+2)*f(i+2)+f(i+1)*f(i+1)*x

注意n的奇偶要讨论,m以后的k不用计算。时间复杂度O(mlog^2(m))。

CF755G PolandBall and Many Other Balls/soj 57送饮料的更多相关文章

  1. 题解-CF755G PolandBall and Many Other Balls

    题面 CF755G PolandBall and Many Other Balls 给定 \(n\) 和 \(m\).有一排 \(n\) 个球,求对于每个 \(1\le k\le m\),选出 \(k ...

  2. CF755G PolandBall and Many Other Balls 题解

    从神 Karry 的题单过来的,然后自己瞎 yy 了一个方法,看题解区里没有,便来写一个题解 一个常数和复杂度都很大的题解 令 \(dp_{i,j}\) 为 在 \(i\) 个球中选 \(j\) 组的 ...

  3. FFT/NTT复习笔记&多项式&生成函数学习笔记Ⅱ

    因为垃圾电脑太卡了就重开了一个... 前传:多项式Ⅰ u1s1 我预感还会有Ⅲ 多项式基础操作: 例题: 26. CF438E The Child and Binary Tree 感觉这题作为第一题还 ...

  4. POJ 3687 Labeling Balls()

    Labeling Balls Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 9641 Accepted: 2636 Descri ...

  5. Soj题目分类

    -----------------------------最优化问题------------------------------------- ----------------------常规动态规划 ...

  6. codeforces 755C. PolandBall and Forest

    C. PolandBall and Forest time limit per test 1 second memory limit per test 256 megabytes input stan ...

  7. codeforces 755F F. PolandBall and Gifts(贪心+多重背包)

    题目链接: F. PolandBall and Gifts time limit per test 1.5 seconds memory limit per test 256 megabytes in ...

  8. Codeforces 755 F. PolandBall and Gifts 多重背包+贪心

    F. PolandBall and Gifts   It's Christmas time! PolandBall and his friends will be giving themselves ...

  9. 【codeforces 755B】PolandBall and Game

    time limit per test1 second memory limit per test256 megabytes inputstandard input outputstandard ou ...

随机推荐

  1. java获取网页源代码并写入本地文件中

    import java.io.*; import java.net.*; public class URLDemo { public static void main(String args[]){ ...

  2. Vue项目引入sass

    最近两天手头的事情暂时搞完了,可以抽出空来学习一下东西,之前项目都是鹏哥搭建好了,我们在直接在里面写代码,sass语法用来写样式还是比较方便常用的,今天就来试试怎么引入和配置sass 参考文章:Vue ...

  3. 【记录】Swagger2 注解说明

    Swagger是一个用来管理项目接口的非常好用的第三方插件, 程序员只需要通过在接口代码上设置Swagger注解, 就可以在Swagger UI上进行查看与验证接口. 很大程度上节省了,接口文档的制作 ...

  4. android thread Runnable

    原文链接: http://blog.csdn.net/boyupeng/article/details/6208072 这篇文章中有三点需要提前说明一下, 一: 在android中有两种实现线程thr ...

  5. Begin at this time

    学习了一段时间的Python,今天终于下定决心建立博客来记录自己的机器学习之路了.希望这是一个好的开始,希望自己永远不放弃,坚持努力下去.

  6. javascript与jquery删除元素节点

    今天工作的时候遇到一个删除的问题,研究了下发现是没有很好的区分js和jquery的删除方法,在此澄清一下 工作的代码如下 // 删除图片 $("#js_takePhotoWrap" ...

  7. CSIC_716_20191216【pymysql模块】

    强调:mysql要设置严格模式,在my.ini 配置文件中 sql-mode="strict_trans_tables,only_full_group_by"    ,设置完要重启 ...

  8. Delphi QueryPerformanceCounter、QueryPerformanceFrequency函数,精确定时到ns

    var t1,t2:int64; r1,r2,r3:double; begin QueryPerformanceFrequency(c1);//WINDOWS API 返回计数频率 (Intel86: ...

  9. JCF——List

    ArrayList LinkedList Vector

  10. 简单理解Ext.extend

    <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8&quo ...