Description

Perhaps the sea‘s definition of a shell is the pearl. However, in my view, a shell necklace with n beautiful shells contains the most sincere feeling for my best lover Arrietty, but even that is not enough.

Suppose the shell necklace is a sequence of shells (not a chain end to end). Considering i continuous shells in the shell necklace, I know that there exist different schemes to decorate the i shells together with one declaration of love.

I want to decorate all the shells with some declarations of love and decorate each shell just one time. As a problem, I want to know the total number of schemes.

Input

There are multiple test cases(no more than 20 cases and no more than 1 in extreme case), ended by 0.

For each test cases, the first line contains an integer n, meaning the number of shells in this shell necklace, where 1≤n≤105. Following line is a sequence with n non-negative integer a1,a2,…,an, and ai≤107 meaning the number of schemes to decorate i continuous shells together with a declaration of love.

Output

For each test case, print one line containing the total number of schemes module 313(Three hundred and thirteen implies the march 13th, a special and purposeful day).

Sample Input

3
1 3 7
4
2 2 2 2 
0

Sample Output

14
54

题意:就是给定长度为n,然后长度为1-n的珠子有a[i]种,问拼成长度n的方案数,每种珠子有无限个。

题解:f[i]设为拼成i的方案数,发现转移时f[i]=∑f[j]*a[i-j]+a[i] (1<=j<i)发现是个卷积的形式。

   如何去优化。

   去分治解决,设 l,mid的已经处理好了,那么,考虑l,mid对mid+1,r的贡献,

   对于l,mid的贡献部分做卷积运算,得出其贡献,加到mid,r中。

   这个过程就是CDQ的过程。

  1. #include<cstring>
  2. #include<iostream>
  3. #include<cstdio>
  4. #include<algorithm>
  5. #include<cmath>
  6.  
  7. #define N 200007
  8. #define pi acos(-1)
  9. #define mod 313
  10. using namespace std;
  11. inline int read()
  12. {
  13. int x=,f=;char ch=getchar();
  14. while(!isdigit(ch)){if(ch=='-')f=;ch=getchar();}
  15. while(isdigit(ch)){x=(x<<)+(x<<)+ch-'';ch=getchar();}
  16. return x*f;
  17. }
  18.  
  19. int n,num,L;
  20. int a[N],rev[N],f[N];
  21. struct comp
  22. {
  23. double r,v;
  24. comp(double _r=,double _v=){r=_r;v=_v;}
  25. friend inline comp operator+(comp x,comp y){return comp(x.r+y.r,x.v+y.v);}
  26. friend inline comp operator-(comp x,comp y){return comp(x.r-y.r,x.v-y.v);}
  27. friend inline comp operator*(comp x,comp y){return comp(x.r*y.r-x.v*y.v,x.r*y.v+x.v*y.r);}
  28. }x[N],y[N];
  29.  
  30. void FFT(comp *a,int f)
  31. {
  32. for (int i=;i<num;i++)
  33. if (i<rev[i]) swap(a[i],a[rev[i]]);
  34. for (int i=;i<num;i<<=)
  35. {
  36. comp wn=comp(cos(pi/i),f*sin(pi/i));
  37. for (int j=;j<num;j+=(i<<))
  38. {
  39. comp w=comp(,);
  40. for (int k=;k<i;k++,w=w*wn)
  41. {
  42. comp x=a[j+k],y=w*a[j+k+i];
  43. a[j+k]=x+y,a[j+k+i]=x-y;
  44. }
  45. }
  46. }
  47. if (f==-) for (int i=;i<num;i++) a[i].r/=num;
  48. }
  49. void CDQ(int l,int r)
  50. {
  51. if (l==r) {f[l]=(f[l]+a[l])%mod;return;}
  52. int mid=(l+r)>>;
  53. CDQ(l,mid);
  54. L=;for (num=;num<=(r-l+);num<<=,L++);if (L) L--;
  55. for (int i=;i<num;i++) rev[i]=(rev[i>>]>>)|((i&)<<L);
  56. for (int i=;i<num;i++) x[i]=y[i]=comp(,);
  57. for (int i=l;i<=mid;i++) x[i-l]=comp(f[i],);
  58. for (int i=;i<=r-l;i++) y[i-]=comp(a[i],);
  59. FFT(x,);FFT(y,);
  60. for (int i=;i<num;i++) x[i]=x[i]*y[i];
  61. FFT(x,-);
  62. for (int i=mid+;i<=r;i++)
  63. (f[i]+=x[i-l-].r+0.5)%=mod;
  64. CDQ(mid+,r);
  65. }
  66. int main()
  67. {
  68. while(~scanf("%d",&n)&&n)
  69. {
  70. for (int i=;i<=n;i++) a[i]=read()%mod,f[i]=;
  71. CDQ(,n);
  72. printf("%d\n",f[n]);
  73. }
  74. }

hdu Shell Necklace 5730 分治FFT的更多相关文章

  1. HDU Shell Necklace CDQ分治+FFT

    Shell Necklace Problem Description Perhaps the sea‘s definition of a shell is the pearl. However, in ...

  2. hdu5730 Shell Necklace 【分治fft】

    题目 简述: 有一段长度为n的贝壳,将其划分为若干段,给出划分为每种长度的方案数,问有多少种划分方案 题解 设\(f[i]\)表示长度为\(i\)时的方案数 不难得dp方程: \[f[i] = \su ...

  3. HDU 5730 Shell Necklace cdq分治+FFT

    题意:一段长为 i 的项链有 a[i] 种装饰方式,问长度为n的相连共有多少种装饰方式 分析:采用dp做法,dp[i]=∑dp[j]*a[i-j]+a[i],(1<=j<=i-1) 然后对 ...

  4. 【HDU 5730】Shell Necklace

    http://acm.hdu.edu.cn/showproblem.php?pid=5730 分治FFT模板. DP:\(f(i)=\sum\limits_{j=0}^{i-1}f(j)\times ...

  5. hdu 5730 Shell Necklace [分治fft | 多项式求逆]

    hdu 5730 Shell Necklace 题意:求递推式\(f_n = \sum_{i=1}^n a_i f_{n-i}\),模313 多么优秀的模板题 可以用分治fft,也可以多项式求逆 分治 ...

  6. HDU - 5730 :Shell Necklace(CDQ分治+FFT)

    Perhaps the sea‘s definition of a shell is the pearl. However, in my view, a shell necklace with n b ...

  7. hdu 5730 Shell Necklace——多项式求逆+拆系数FFT

    题目:http://acm.hdu.edu.cn/showproblem.php?pid=5730 可以用分治FFT.但自己只写了多项式求逆. 和COGS2259几乎很像.设A(x),指数是长度,系数 ...

  8. HDU5730 Shell Necklace(DP + CDQ分治 + FFT)

    题目 Source http://acm.hdu.edu.cn/showproblem.php?pid=5730 Description Perhaps the sea‘s definition of ...

  9. 【HDU5730】Shell Necklace(多项式运算,分治FFT)

    [HDU5730]Shell Necklace(多项式运算,分治FFT) 题面 Vjudge 翻译: 有一个长度为\(n\)的序列 已知给连续的长度为\(i\)的序列装饰的方案数为\(a[i]\) 求 ...

随机推荐

  1. CERC2017 Gambling Guide,最短路变形,期望dp

    题意 给定一个无向图,你需要从1点出发到达n点,你在每一点的时候,使用1个单位的代价,随机得到相邻点的票,但是你可以选择留在原地,也可以选择使用掉这张票,问到达n点的最小代价的方案的期望是多少. 分析 ...

  2. 再谈js传值和传址

    js的传值和传址还是真绕,前回文说道 1.值类型是传值的 2.对象和数组是传址的 这两点通过例子的到了证实 然而还有一种情况没有讨论 即 函数的参数的传值和传址 通过实验,在函数中用一个新对象去覆盖传 ...

  3. 初步学习pg_control文件之四

    接前文,初步学习pg_control文件之三  继续分析 何时出现 DB_SHUTDOWNING状态: 在正常的shutdown的时候,需要进行checkpoint,所以就在此处,设置pg_contr ...

  4. struts2官方 中文教程 系列十三:利用通配符选择方法

    介绍 在本教程中,我们将介绍如何在struts.xml中配置action节点以达到仅使用一个action节点将几个不同的url关联到特定action类的特定方法.这样做的目的是减少struts.xml ...

  5. php杂记——2(数组的使用)

    1.建立升序数组:range(); $numarr1 = range(1,4); //(1,2,3,4) $numarr2 = range(1,10,2); //(1,3,5,7,9) $letter ...

  6. windows 无法上网问题解决一例

    dhcp获取ip地址,网卡驱动和ip地址获取正常,ping www.baidu.com可以ping通,但是打开浏览器或者qq上网不行,而且系统有提示腾讯管家出错的信息,初步怀疑360和腾讯管家打架导致 ...

  7. 解析车辆VIN码识别(车架号识别)系统

    很多人在购买车辆的时候,只关注性能.外观.内饰等,其实真正的内行是首先看车辆的VIN码,也叫车架号码. VIN码(车架号码)是一辆车的唯一身份证明,一般在车辆的挡风玻璃处,有的在车辆防火墙上,或B柱铭 ...

  8. jmeter接口测试--参数化

    接口测试时遇到一些属性不能重复时,可以使用Random 随机函数,除此之外,也可以用用户参数 一..随机参数化 1.在jmeter工具,菜单-选项-函数助手对话框,输入数值,属性,点击生成: 2.在相 ...

  9. 核方法(Kernel Methods)

    核方法(Kernel Methods) 支持向量机(SVM)是机器学习中一个常见的算法,通过最大间隔的思想去求解一个优化问题,得到一个分类超平面.对于非线性问题,则是通过引入核函数,对特征进行映射(通 ...

  10. 传输控制层协议TCP概述---抄书

    1.TCP的主要特点 TCP是TCP/IP体系中非常复杂的一个协议.下面介绍TCP的最主要的特点. (1)TCP是面向连接的运输层协议.也就是说,应用程序在使用TCP协议之前,必须先建立TCP连接.在 ...