Piglet's Birthday(CF-248E)

Problem Description

Piglet has got a birthday today. His friend Winnie the Pooh wants to make the best present for him — a honey pot. Of course Winnie realizes that he won't manage to get the full pot to Piglet. In fact, he is likely to eat all the honey from the pot. And as soon as Winnie planned a snack on is way, the pot should initially have as much honey as possible.

The day before Winnie the Pooh replenished his honey stocks. Winnie-the-Pooh has n shelves at home, each shelf contains some, perhaps zero number of honey pots. During the day Winnie came to the honey shelves q times; on the i-th time he came to some shelf ui, took from it some pots ki, tasted the honey from each pot and put all those pots on some shelf vi. As Winnie chose the pots, he followed his intuition. And that means that among all sets of ki pots on shelf ui, he equiprobably chooses one.

Now Winnie remembers all actions he performed with the honey pots. He wants to take to the party the pot he didn't try the day before. For that he must know the mathematical expectation of the number m of shelves that don't have a single untasted pot. To evaluate his chances better, Winnie-the-Pooh wants to know the value m after each action he performs.

Your task is to write a program that will find those values for him.

Input

The first line of the input contains a single number n (1 ≤ n ≤ 105) — the number of shelves at Winnie's place. The second line contains n integers ai (1 ≤ i ≤ n, 0 ≤ ai ≤ 100) — the number of honey pots on a shelf number i.

The next line contains integer q (1 ≤ q ≤ 105) — the number of actions Winnie did the day before. Then follow q lines, the i-th of them describes an event that follows chronologically; the line contains three integers ui, vi and ki (1 ≤ ui, vi ≤ n, 1 ≤ ki ≤ 5) — the number of the shelf from which Winnie took pots, the number of the shelf on which Winnie put the pots after he tasted each of them, and the number of the pots Winnie tasted, correspondingly.

Consider the shelves with pots numbered with integers from 1 to n. It is guaranteed that Winnie-the-Pooh Never tried taking more pots from the shelf than it has.

Output

For each Winnie's action print the value of the mathematical expectation m by the moment when this action is performed. The relative or absolute error of each value mustn't exceed 10 - 9.

Examples

Input

3
2 2 3
5
1 2 1
2 1 2
1 2 2
3 1 1
3 2 2

Output

0.000000000000
0.333333333333
1.000000000000
1.000000000000
2.000000000000

题意:n 个架子,每个架子上有 a[i] 个蜂蜜,进行 m 次操作,每次操作格式为 u v x,表示从 u 个货架随机取 x 罐品尝,然后放到第 v 个架子上,问每次操作完后,这些货架上品尝的期望数

思路:

说是要求期望,但实际上是要求概率

设 dp[i][j] 表示第 i 个货架,有 j 个没被吃过的期望,b[i] 为当前货架上有的蜂蜜

那么转移方程有:dp[u][i]=\sum_{j=0}^k (\frac{dp[u][i+j]*C(i+j,j)*C(b[u]-i-j,k-j)}{C(b[u],k)})

Source Program

#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<string>
#include<cstring>
#include<cmath>
#include<ctime>
#include<algorithm>
#include<utility>
#include<stack>
#include<queue>
#include<vector>
#include<set>
#include<map>
#define EPS 1e-9
#define PI acos(-1.0)
#define INF 0x3f3f3f3f
#define LL long long
const int MOD = 1E9+7;
const int N =100000+5;
const int dx[] = {0,0,-1,1,-1,-1,1,1};
const int dy[] = {-1,1,0,0,-1,1,-1,1};
using namespace std;

int n,m;
int a[N],b[N];
double dp[N][100+10];
double C(int n,int m){
    if(n<m)
        return 0;
    double res=1;
    for(int i=1;i<=m;i++)
        res=res*(1.0*(n-i+1)/i);
    return res;
}

int main() {
    scanf("%d",&n);
    for(int i=1; i<=n; i++){
        scanf("%d",&a[i]);
        b[i]=a[i];
    }
    for(int i=1; i<=n; i++)
        dp[i][a[i]]=1;

    double res=0;
    for(int i=1; i<=n; i++)
        res+=dp[i][0];

    scanf("%d",&m);
    while(m--){
        int u,v,k;
        scanf("%d%d%d",&u,&v,&k);
        res-=dp[u][0];

        for(int i=0; i<=a[u]; i++) {
            double temp=0;
            for(LL j=0; j<=k; j++)
                temp+= dp[u][i+j]*C(i+j,j)*C(b[u]-i-j,k-j) / C(b[u],k);
            dp[u][i]=temp;
        }
        b[u]-=k;
        b[v]+=k;
        res+=dp[u][0];
        printf("%.10lf\n",res);
    }
    return 0;
}

 

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值