CF BUDDY
← Problems·

1045D · Interstellar battle

2200 · math, probabilities, trees

Problem: In the intergalactic empire Bubbledom there are NN planets, of which some pairs are directly connected by two-way wormholes. There are N1N-1 wormholes. The wormholes are of extreme religious importance in Bubbledom, a set of planets in Bubbledom consider themselves one intergalactic kingdom if and only if any two planets in the set can reach each other by traversing the wormholes. You are given that Bubbledom is one kingdom. In other words, the network of planets and wormholes is a tree.

However, Bubbledom is facing a powerful enemy also possessing teleportation technology. The enemy attacks every night, and the government of Bubbledom retakes all the planets during the day. In a single attack, the enemy attacks every planet of Bubbledom at once, but some planets are more resilient than others. Planets are number 0,1,,N10,1,…,N-1 and the planet ii will fall with probability pip_i. Before every night (including the very first one), the government reinforces or weakens the defenses of a single planet.

The government of Bubbledom is interested in the following question: what is the expected number of intergalactic kingdoms Bubbledom will be split into, after a single enemy attack (before they get a chance to rebuild)? In other words, you need to print the expected number of connected components after every attack.

Input Format: The first line contains one integer number NN (1N1051 \le N \le 10^5) denoting the number of planets in Bubbledom (numbered from 00 to N1N-1).

The next line contains NN different real numbers in the interval [0,1][0,1], specified with 2 digits after the decimal point, denoting the probabilities that the corresponding planet will fall.

The next N1N-1 lines contain all the wormholes in Bubbledom, where a wormhole is specified by the two planets it connects.

The next line contains a positive integer QQ (1Q1051 \le Q \le 10^5), denoting the number of enemy attacks.

The next QQ lines each contain a non-negative integer and a real number from interval [0,1][0,1], denoting the planet the government of Bubbledom decided to reinforce or weaken, along with the new probability that the planet will fall.

Output Format: Output contains QQ numbers, each of which represents the expected number of kingdoms that are left after each enemy attack. Your answers will be considered correct if their absolute or relative error does not exceed 10410^{-4}.

Sample Cases

Case 1

Input

5
0.50 0.29 0.49 0.95 0.83
2 3
0 3
3 4
2 1
3
4 0.66
1 0.69
0 0.36

Output

1.68040
1.48440
1.61740

Similar problems

00:00:00
Loading editor…
Welcome! I'm your coding tutor for this problem. Use the chips below to reveal stored hints or get AI feedback on your code. I'll guide you step by step — never giving away the solution.

Sign in to unlock AI tutor feedback