BNU28000 Maxim and Restaurant

来源:互联网 发布:播放器 p2p m3u 网络 编辑:程序博客网 时间:2024/05/24 03:43

Description:

Maxim has opened his own restaurant! The restaurant has got a huge table, the table's length isp 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 ton. Maxim knows the sizes of all guests that are going to come to him. Thei-th guest's size (ai) 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 thanp. 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 possiblen! orders of guests in the queue. Help Maxim, calculate this number.


Input

The first line contains integer n (1 ≤ n ≤ 50) — the number of guests in the restaurant. The next line contains integersa1,a2,...,an(1 ≤ ai ≤ 50) — the guests' sizes in meters. The third line contains integerp(1 ≤ p ≤ 50) — the table's length in meters.

The numbers in the lines are separated by single spaces.


output:

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 exceed10 - 4.


Sample

Input
31 2 33
Output
1.3333333333

Hint

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).

题意:有一个长度为P的桌子。有n个人,第i个人坐在桌子边的话需要占得长度为ai。n个人站成一队,从队头开始坐。到某个人时,桌子剩下的部分不够这个人坐的时候停止。这时,有x个人坐下。n!种排队的方式每种都有一个x值。求x的平均值。

思路:f[i][j][k]表示取j个数和为i以k作为分隔,即i再加上第k个数就会超。


#include<iostream>   #include<cstdio>   #include<cstring>   using namespace std;  double f[55][55][55];//f[i][j][k],j people sum is i ,k the next   int n,a[55],p;  double  sum,c[55];  int main()  {      c[0]=1;      for(int i=1; i<=50; i++)c[i]=c[i-1]*i;      while(scanf("%d",&n)!=EOF)      {          memset(f,0,sizeof(f));          sum=0;          for(int i=1; i<=n; i++)          {              scanf("%d",&a[i]);              sum+=a[i];              f[0][0][i]=1;          }          scanf("%d",&p);          if(sum<=p)          {              cout<<n<<endl;              continue;          }          for(int i=1; i<=n; i++)          {              for(int j=1; j<=n; j++)              {                  if(j!=i)                  {                      for(int g=n; g>=1; g--)                      {                          for(int k=p; k>=a[i]; k--)                          {                              f[k][g][j]+=f[k-a[i]][g-1][j];                          }                      }                  }              }          }          sum=0;          for(int i=1; i<=n; i++)          {              for(int g=1; g<=n; g++)              {                  if(a[i]>p)a[i]=p+1;                  for(int j=p-a[i]+1; j<=p; j++)                      sum+=f[j][g][i]*c[g]*c[n-g-1]*g;              }          }          sum/=c[n];          printf("%.9f\n",sum);      }      return 0;  }  


原创粉丝点击