1986: [USACO 2023 January Contest Gold] Problem 3. Moo Route

文件提交:无需freopen 内存限制:256 MB 时间限制:2.000 S
评测方式:普通裁判 命题人:
提交:2 解决:1

题目描述

Farmer Nhoj dropped Bessie in the middle of nowhere! At time t=0, Bessie is located at x=0 on an infinite number line. She frantically searches for an exit by moving left or right by 1 unit each second. However, there actually is no exit and after T seconds, Bessie is back at x=0, tired and resigned.

Farmer Nhoj tries to track Bessie but only knows how many times Bessie crosses x=.5,1.5,2.5,,(N1).5, given by an array A0,A1,,AN1 (1N1051Ai106). Bessie never reaches x>N nor x<0.

In particular, Bessie's route can be represented by a string of T=i=0N1Ai Ls and Rs where the ith character represents the direction Bessie moves in during the ith second. The number of direction changes is defined as the number of occurrences of LRs plus the number of occurrences of RLs.

Please help Farmer Nhoj count the number of routes Bessie could have taken that are consistent with A and minimize the number of direction changes. It is guaranteed that there is at least one valid route.

输入

The first line contains N. The second line contains A0,A1,,AN1.

输出

The number of routes Bessie could have taken, modulo 109+7.

样例输入

2
4 6

样例输出

2

提示

Bessie must change direction at least 5 times. There are two routes corresponding to Bessie changing direction exactly 5 times:

RRLRLLRRLL

RRLLRRLRLL

SCORING:

  • Inputs 2-4: N2 andmax(Ai)103
  • Inputs 5-7: N2
  • Inputs 8-11: max(Ai)103
  • Inputs 12-21: No additional constraints.

来源/分类