Maxim and Restaurant

题意翻译

n个客人排成一队去吃饭。每个客人有一个宽度a_i,但是饭桌的大小有限,只能容纳下p的宽度。所以客人们依次进入直到进不去为止。 现在n个客人以所有可能的形式排列去吃饭(即全排列),求每次吃饭人数的数学期望。 **输入** 第一行一个n 第二行n个a_i 第三行p。1 <= n, a_i, p <= 50 **输出** 一个小数,代表数学期望。误差不超过10^(-4)即可。

题目描述

Maxim has opened his own restaurant! The restaurant has got a huge table, the table's length is $ p $ meters. Maxim has got a dinner party tonight, $ n $ guests will come to him. Let's index the guests of Maxim's restaurant from 1 to $ n $ . Maxim knows the sizes of all guests that are going to come to him. The $ i $ -th guest's size ( $ a_{i} $ ) represents the number of meters the guest is going to take up if he sits at the restaurant table. Long before the dinner, the guests line up in a queue in front of the restaurant in some order. Then Maxim lets the guests in, one by one. Maxim stops letting the guests in when there is no place at the restaurant table for another guest in the queue. There is no place at the restaurant table for another guest in the queue, if the sum of sizes of all guests in the restaurant plus the size of this guest from the queue is larger than $ p $ . In this case, not to offend the guest who has no place at the table, Maxim doesn't let any other guest in the restaurant, even if one of the following guests in the queue would have fit in at the table. Maxim is now wondering, what is the average number of visitors who have come to the restaurant for all possible $ n! $ orders of guests in the queue. Help Maxim, calculate this number.

输入输出格式

输入格式


The first line contains integer $ n $ $ (1<=n<=50) $ — the number of guests in the restaurant. The next line contains integers $ a_{1} $ , $ a_{2} $ , $ ... $ , $ a_{n} $ $ (1<=a_{i}<=50) $ — the guests' sizes in meters. The third line contains integer $ p $ $ (1<=p<=50) $ — the table's length in meters. The numbers in the lines are separated by single spaces.

输出格式


In a single line print a real number — the answer to the problem. The answer will be considered correct, if the absolute or relative error doesn't exceed $ 10^{-4} $ .

输入输出样例

输入样例 #1

3
1 2 3
3

输出样例 #1

1.3333333333

说明

In the first sample the people will come in the following orders: - $ (1,2,3) $ — there will be two people in the restaurant; - $ (1,3,2) $ — there will be one person in the restaurant; - $ (2,1,3) $ — there will be two people in the restaurant; - $ (2,3,1) $ — there will be one person in the restaurant; - $ (3,1,2) $ — there will be one person in the restaurant; - $ (3,2,1) $ — there will be one person in the restaurant. In total we get $ (2+1+2+1+1+1)/6 $ = $ 8/6 $ = $ 1.(3) $ .