HDU 1028 Ignatius and the Princess III
//强行递推。 xx[i][j]表示i数中第j个开头的组合种类。
/*
最终结果[i]为 sum of(xx[i][j]) (j from 1 to i);
xx[i][j]=sum of (xx[i-j][k]) (k from 1 to j);
例如 xx[10][4]=xx[6][1]+xx[6][2]+xx[6][3]+xx[6][4];
xx[6][1] =1;
6=1+1+1+1+1+1;
xx[6][2]=3;
6=2+2+2,
6=2+2+1+1,
6=2+1+1+1+1;
xx[6][3]=3;
6=3+3,
6=3+2+1,
6=3+1+1+1;
xx[6][4]=2;
6=4+2,
6=4+1+1;
xx[10][4]=xx[6][1]+xx[6][2]+xx[6][3]+xx[6][4]=9;
10=4+(1+1+1+1+1+1),
10=4+(2+2+2),
10=4+(2+2+1+1),
10=4+(2+1+1+1+1),
10=4+(3+3),
10=4+(3+2+1),
10=4+(3+1+1+1),
10=4+(4+2),
10=4+(4+1+1);
*/
#include<cstdio>
#include<cmath>
#include<cstring>
#include<queue>
#include<stack>
#include<cstdlib>
#include<vector>
#include<map>
#include<string>
#include<iostream>
#include<algorithm>
#define ull unsigned long long
#define ll long long
using namespace std;
#define INF 0x3F3F3F3F
int xx[125][125]={0};
int main()
{
int n;
for(int i=1;i<=120;i++)
{
xx[i][i]=1;
for(int j=i-1;j>=1;j--)
{
for(int k=1;k<=j;k++)
xx[i][j]+=xx[i-j][k];
}
}
while(~scanf("%d",&n))
{
int sum=0;
for(int i=1;i<=n;i++)
{
sum+=xx[n][i];
}
printf("%d\n",sum);
}
}