Description
The director of a new movie needs to create a scaled set for the movie. In the set there will be N skyscrapers, with distinct integer heights from 1 to N meters. The skyline will be determined by the sequence of the heights of the skyscrapers from left to right. It will be a permutation of the integers from 1 to N.
The director is extremely meticulous, so she wants to avoid a certain sloping pattern. She doesn't want for there to be ANY three buildings in positions i, j and k, i < j < k, where the height of building i is smaller than that of building j, and building j's height is smaller than building k's height.
Your task is to tell the director, for a given number of buildings, how many distinct orderings for the skyline avoid the sloping pattern she doesn't like.
Input
There will be several test cases in the input. Each test case will consist of a single line containing a single integer
N (3
N
1,
000), which represents the number of skyscrapers. The heights of the skyscrapers are assumed to be
1, 2, 3,..., N. The input will end with a line with a single
0.
Output
For each test case, output a single integer, representing the number of good skylines - those avoid the sloping pattern that the director dislikes - modulo 1,000,000. Print each integer on its own line with no spaces. Do not print any blank lines between answers.
catalan数
/*#include<cstdio>
#include<algorithm>
using namespace std;
#define mod 1000000
int main(){
int n,i,j,k,sum,s[1010],f;
//while(scanf("%d",&n))
for(n=3;n<=20;n++){
if(n==0)break;
for(i=1;i<=n;i++)
s[i]=i;
sum=0;
do{
f=1;
for(i=1;i<=n && f;i++)
for(j=i+1;j<=n && f;j++)
for(k=j+1;k<=n && f;k++){
if(s[i]<s[j] && s[j]<s[k]){
f=0;
break;
}
}
if(f)sum++;
}while(next_permutation(s+1,s+n+1));
printf(" %d = %d\n",n,sum);
}
}*/
#include<cstdio>
#define mod 1000000
long long h[1010];
int main(){
int n,i,j;
h[0]=1;h[1]=1;
for(i=2;i<=1000;i++){
for(j=0;j<=i-1;j++)
h[i]=(h[i]+h[j]*h[i-1-j])%mod;
}
while(scanf("%d",&n)){
if(n==0)break;
printf("%lld\n",h[n]);
}
}
本文探讨了如何计算不包含特定递增模式的摩天大楼排列数量问题。通过数学算法,特别是利用Catalan数,我们能够解决电影导演对于特定建筑模式的担忧,并提供有效算法实现。
240

被折叠的 条评论
为什么被折叠?



