logo AlgoBeat OnlineJudge
登录 注册

#102483. [BZOJ 2483] Pku2279 Mr. Young's Picture Permutations

内存限制:128 MiB 时间限制:1000 ms 标准输入输出
题目类型:传统 评测方式:文本比较
上传者: 匿名

题目描述

Mr.Young wishes to take a picture of his class.The students will stand in rows with each row no longer than the row behind it and the left ends of the rows aligned.For instance, students could be arranged in rows (from back to front) of and students.

X X X X X
X X X
X X X
X

In addition,Mr.Young wants the students in each row arranged so that heights decrease from left to right.Also,student heights should decrease from the back to the front.Thinking about it,Mr.Young sees that for the 12-student example,there are at least two ways to arrange the students (with as the tallest etc.):

 1  2  3  4  5     1  5  8 11 12
 6  7  8           2  6  9
 9 10 11           3  7 10
12                 4

Mr.Young wonders how many different arrangements of the students there might be for a given arrangement of rows.He tries counting by hand starting with rows of and and counts arrangements:

123 123 124 124 125 125 126 126 134 134 135 135 136 136 145 146

45  46  35  36  34  36  34  35  25  26  24  26  24  25  26  25

6   5   6   5   6   4   5   4   6   5   6   4   5   4   3   3

Mr.Young sees that counting by hand is not going to be very effective for any reasonable number of students so he asks you to help out by writing a computer program to determine the number of different arrangements of students for a given set of rows.

杨先生要给他的学生们拍照片。首先,站队状况是确定的,若第 行站了 个人,则有 ,所有的行都是靠左对齐的。并且,在同一行和同一列里面,从左到右或者从上到下身高都是递减的。现在所有学生的身高都不相同,学生数不超过 个,行数不超过 。你需要求出所有可能的排队方法的总数。

输入格式

The input for each problem instance will consist of two lines.The first line gives the number of rows,,as a decimal integer.The second line contains the lengths of the rows from back to front(05N30$.

输出格式

The output for each problem instance shall be the number of arrangements of the students into the given rows so that the heights decrease along each row from left to right and along each column from back to front as a decimal integer.(Assume all heights are distinct.)The result of each problem instance should be on a separate line.The input data will be chosen so that the result will always fit in an unsigned bit integer.

样例

样例输入 #1

1
30
5
1 1 1 1 1
3
3 2 1
4
5 3 3 1
5
6 5 4 3 2
2
15 15
0

样例输出 #1

1
1
16
4158
141892608
9694845