Hide

Problem L
Separating Enemies

In the town of Unity Avenue Peace Centre (UAPC), there are $N$ houses all on the same side of a single road. There is a single citizen living in each house. Some pairs of citizens are enemies, and are prone to fighting if they can reach each other’s house via the road.

To prevent these fights, the town council has decided to destroy portions of the road between certain houses. The goal is to ensure that no pair of enemies can reach each other, while minimizing the cost of destruction. The cost to destroy the portion of the road between the $i$th and $(i+1)$th house is $c_i$ dollars. Your task is to tell the town council how much this destruction will cost.

Input

The first line of input contains an integer $N$ ($1 \leq N \leq 10^5$) representing the number of houses in UAPC. The second line of input contains $N - 1$ integers $c_1, c_2, \ldots , c_{N-1}$ ($1 \leq c_i \leq 10^4$), where $c_i$ is the cost to destroy the portion of the road between the $i$th and $(i+1)$th house. The third line of input contains an integer $M$ ($1 \leq M \leq 10^5$), the number of pairs of enemies. The following $M$ lines each contain two integers $u$ and $v$ ($1 \leq u < v \leq N$), indicating that the residents of houses $u$ and $v$ are enemies.

Output

Output a single integer representing the minimum total cost required to destroy portions of the road to ensure that each pair of enemies are separated.

Sample Input 1 Sample Output 1
5
1 2 3 4
1
1 5
1
Sample Input 2 Sample Output 2
5
1 2 3 4
2
1 2
2 5
3
Sample Input 3 Sample Output 3
5
1 2 3 4
2
1 3
2 5
2

Please log in to submit a solution to this problem

Log in