bzoj1925 [Sdoi2010]地精部落

Posted XD-TEST

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bzoj1925 [Sdoi2010]地精部落相关的知识,希望对你有一定的参考价值。

  dp,f[i]表示放置了1到i的方案数,g[i]表示放置了1到i且最左侧为山谷的方案数,可以得到dp方程f[i]=Σg[j]*g[i-1-j]*c[i-1][j](0<=j<i),求组合数直接开数组会爆,可以用滚动数组或者开个vector计算,不会爆。

     代码

 1 #include<cstdio>
 2 #include<vector>
 3 using namespace std;
 4 const int N  = 4210;
 5 int n,P,i,j;
 6 vector<int> c[N];
 7 long long f[N],g[N];
 8 int main()
 9 {
10     scanf("%d%d",&n,&P);
11     for (i=0;i<=n;i++)
12     {
13         c[i].push_back(1);
14         for (j=1;j<=i;j++)
15         {
16             int tmp=0;
17             tmp=c[i-1][j-1];
18             if (j<=i-1) tmp=(tmp+c[i-1][j])%P;
19             c[i].push_back(tmp);
20         }
21     }
22     g[1]=g[0]=1;
23     for (i=2;i<=n;i++)
24     for (j=0;j<i;j++)
25     {
26         (f[i]+=(g[j]*g[i-1-j])%P*c[i-1][j])%=P;
27         if (j&1)
28         (g[i]+=(g[j]*g[i-1-j])%P*c[i-1][j])%=P;
29     }
30     printf("%lld",f[n]);
31 }

 

以上是关于bzoj1925 [Sdoi2010]地精部落的主要内容,如果未能解决你的问题,请参考以下文章

bzoj1925 [Sdoi2010]地精部落

BZOJ 1925: [Sdoi2010]地精部落

bzoj 1925 [Sdoi2010]地精部落 dp

[bzoj1925][Sdoi2010]地精部落_递推_动态规划

BZOJ1925: [Sdoi2010]地精部落

BZOJ1925[Sdoi2010]地精部落 组合数+DP