HDU1028——I gnatius and the Princess III
生活随笔
收集整理的這篇文章主要介紹了
HDU1028——I gnatius and the Princess III
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
母函數,不解釋……
View Code #include <stdio.h>#define N 10001
int c1[N], c2[N];
int main()
{
int n,i,j,k;
while (scanf("%d", &n) != EOF )
{
for (i=0;i<=n;i++)
{
c1[i]=0;
c2[i]=0;
}
for (i=0;i<=n;i++)
{
c1[i]=1;
}
for (i=2;i<=n;i++)
{
for (j=0;j<=n;j++)
{
for (k=0;k+j<=n;k+=i)
{
c2[j+k] += c1[j];
}
}
for (j=0;j<=n;j++)
{
c1[j]=c2[j];
c2[j]=0;
}
}
printf("%d\n", c1[n]);
}
return 0;
}
?
轉載于:https://www.cnblogs.com/sdutacmer/archive/2011/11/24/2262209.html
創作挑戰賽新人創作獎勵來咯,堅持創作打卡瓜分現金大獎總結
以上是生活随笔為你收集整理的HDU1028——I gnatius and the Princess III的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 学习AutoIt
- 下一篇: KDB支持单步调试功能(ARM架构)