2074. Ant Counting

单点时限: 2.0 sec

内存限制: 256 MB

Bessie was poking around the ant hill one day watching the ants march to and fro while gathering food. She realized that many of the ants were siblings, indistinguishable from one another. She also realized the sometimes only one ant would go for food, sometimes a few, and sometimes all of them. This made for a large number of different sets of ants!

Being a bit mathematical, Bessie started wondering. Bessie noted that the hive has $T$ $(1 \leq T \leq 1~000)$ families of ants which she labeled $1$..$T$ ($A$ ants altogether). Each family had some number $N_i$ $(1 \leq N_i \leq 100)$ of ants.

How many groups of sizes $S, S+1, \ldots, B$ $(1 \leq S \leq B \leq A)$ can be formed?

While observing one group, the set of three ant families was seen as ${1, 1, 2, 2, 3}$, though rarely in that order. The possible sets of marching ants were:

  • 3 sets with 1 ant: {1} {2} {3}
  • 5 sets with 2 ants: {1,1} {1,2} {1,3} {2,2} {2,3}
  • 5 sets with 3 ants: {1,1,2} {1,1,3} {1,2,2} {1,2,3} {2,2,3}
  • 3 sets with 4 ants: {1,2,2,3} {1,1,2,2} {1,1,2,3}
  • 1 set with 5 ants: {1,1,2,2,3}

Your job is to count the number of possible sets of ants given the data above.

输入格式

  • Line 1: 4 space-separated integers: $T,A,S,B$
  • Lines 2..$A+1$: Each line contains a single integer that is an ant type present in the hive

输出格式

Line 1: The number of sets of size $S$..$B$ (inclusive) that can be created. A set like ${1,2}$ is the same as the set ${2,1}$ and should not be double-counted. Print only the LAST SIX DIGITS of this number, with no leading zeroes or spaces.

样例

Input
3 5 2 3
1
2
2
1
3
Output
10

提示

INPUT DETAILS:
Three types of ants (1..3); 5 ants altogether. How many sets of size 2 or size 3 can be made?

OUTPUT DETAILS:
5 sets of ants with two members; 5 more sets of ants with three members

10 人解决,14 人已尝试。

11 份提交通过,共有 28 份提交。

5.9 EMB 奖励。

创建: 16 年,3 月前.

修改: 6 年,6 月前.

最后提交: 9 月,1 周前.

来源: USACO 2005 November Silver

题目标签
DP