프로그램 명: coci_periodni
제한시간: 5 초

Luka is bored in chemistry class so he is staring at a large periodic table of chemical elements hanging from a wall above the blackboard. To kill time, Luka decided to make his own table completely different from the one in the classroom.

His table consists of N columns, each with some height, aligned at the bottom (see example below). After he draws the table he needs to fill it with elements. He first decided to enter the noble gases of which there are K. Luka must put them in the table so that no two noble gases are close to each other. Two squares in the table are close to each other if they are in the same column or row, and all squares between them exist. In the example below, the 'a' squares are not close, but the 'b' squares are.

Write a program that, given N, K and the heights of the N columns, calculates the total number of ways for Luka to place the noble gases into the table. This number can be large, so output it modulo 1000000007.

입력

출력

Output the number of ways for Luka to fill his table with noble gases, modulo 1000000007.

입출력 예

input 

3 3 
2 1 3 

output 

2 

input 

4 1 
1 2 3 4 

output 

10 

output 

5 2 
2 3 1 2 4 

output 

43 

input 

3 2 
999999 999999 999999 

output 

990979013 
출처: coci 2008/2009 contest4 6/6

[질/답] [제출 현황] [푼 후(0)]
[ 채 점 ] [홈으로]  [뒤 로]