Problem G. Game

Author:ACM ICPC 2007-2008, Northeastern European Regional Contest   Time limit:3 sec
Input file:game.in   Memory limit:64 Mb
Output file:game.out  

Statement

A group of contestants sits at the round table and plays the following game to relieve anxiety before the start of NEERC 2007. The game is played with a single token that is given to one person at the beginning of the game. This person passes the token to the adjacent person on the left-hand side or to the adjacent person on the right-hand side with a certain probability. A person who receives the token does the same with his own probability and so on. The game ends when each person has received the token at least once. The last person who has received the token wins.

The problem is to find the probability of winning for the given person. The probability of passing the token to the left or to the right is individual for each person and is known in advance before the beginning of the game.

Contestants are numbered from 1 to n so that the person number 2 sits to the right of 1, the person number 3 sits to the right of 2, and so on. The person number 1 sits to the right of n. The game starts with the person whose number is specified in the input file and your task is to find the probability of winning for the person number n.

Picture shows 7 contestants at the table with the token given to the person number 3.

Note: all probabilities in the third example are on the same line in the actual input file.

Input file format

The first line of the input file contains two integer numbers n and k. n denotes the total number of contestants, k denotes the number of the person who has the token at the beginning of the game.

The second line of the input file contains n − 1 numbers that denote the probabilities pi of passing the token to the right for the persons numbered from 1 to n − 1. The probability of passing the token to the left for the person number i is 1 - pi. The probabilities are given with at most 2 digits after decimal point.

Output file format

Write to the output file a single number that denotes the probability of winning for the person number n with a precision of at least 6 digits after decimal point.

Constraints

2 ≤ ne 50

1 ≤ k < n

0.01 ≤ pi ≤ 0.99

Sample tests

No. Input file (game.in) Output file (game.out)
1
7 3
0.5 0.5 0.5 0.5 0.5 0.5
0.1666666667
2
7 33 1
0.3 0.6
0.3000000000
3
24 12
0.99 0.99 0.99 0.99 0.99 0.99 0.99 0.99 0.99 0.99 0.99 0.5
0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01 0.01
0.9800000000

0.084s 0.008s 15