hdoj-4472-Count

来源:互联网 发布:人工智能分析报告 编辑:程序博客网 时间:2024/06/04 01:01

Prof. Tigris is the head of an archaeological team who is currently in charge of an excavation in a site of ancient relics.
This site contains relics of a village where civilization once flourished. One night, examining a writing record, you find some text meaningful to you. It reads as follows.
“Our village is of glory and harmony. Our relationships are constructed in such a way that everyone except the village headman has exactly one direct boss and nobody will be the boss of himself, the boss of boss of himself, etc. Everyone expect the headman is considered as his boss’s subordinate. We call it relationship configuration. The village headman is at level 0, his subordinates are at level 1, and his subordinates’ subordinates are at level 2, etc. Our relationship configuration is harmonious because all people at same level have the same number of subordinates. Therefore our relationship is …”
The record ends here. Prof. Tigris now wonder how many different harmonious relationship configurations can exist. He only cares about the holistic shape of configuration, so two configurations are considered identical if and only if there’s a bijection of n people that transforms one configuration into another one.
Please see the illustrations below for explanation when n = 2 and n = 4.
这里写图片描述

The result might be very large, so you should take module operation with modules 10 9 +7 before print your answer.

Input
There are several test cases.
For each test case there is a single line containing only one integer n (1 ≤ n ≤ 1000).
Input is terminated by EOF.

Output
For each test case, output one line “Case X: Y” where X is the test case number (starting from 1) and Y is the desired answer.

Sample Input

1
2
3
40
50
600
700

Sample Output

Case 1: 1
Case 2: 1
Case 3: 2
Case 4: 924
Case 5: 1998
Case 6: 315478277
Case 7: 825219749

题意很好理解,就是给你n个节点,你得将他们构成一棵树,然后这棵树每一层的每个节点的子节点的个数要一毛一样

对于n个点,先将第一个节点(父节点)去掉,因为父节点只有一个,还剩下 n-1 个点,

因为每一层的每个节点的子节点数要相同,所以将这 n-1 个节点m等分,每份为(n-1)/m个点,然后就可以开始算了

#include<cstdio>#include<cstring>#include<algorithm>#include<iostream>using namespace std;typedef long long ll;const int mod=1000000000+7;int f[1010];void init(){    memset(f,0,sizeof(f));    f[1]=1;    f[2]=1;    f[3]=2;    for(int i=4;i<=1000;i++)    {        for(int j=1;j<i;j++)        {            if((i-1)%j==0)            {                f[i]+=f[(i-1)/j];                f[i]%=mod;            }        }    }}int main(){    init();    int n;    int Cas=1;    while(scanf("%d",&n)!=EOF)    {        printf("Case %d: %d\n",Cas++,f[n]);    }    return 0;}
0 0
原创粉丝点击