#icpc2015summerday4j. [icpc2015summer_day4_j]Black Company
[icpc2015summer_day4_j]Black Company
MathJax.Hub.Config({ tex2jax: { inlineMath: [[""], ["\\(","\\)"]], processEscapes: true }}); blockquote { font-family: Menlo, Monaco, "Courier New", monospace; color: #333333; display: block; padding: 8.5px; margin: 0 0 9px; font-size: 12px; line-height: 18px; background-color: #f5f5f5; border: 1px solid #ccc; border: 1px solid rgba(0, 0, 0, 0.15); -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; white-space: pre; white-space: pre-wrap; word-break: break-all; word-wrap: break-word; }
Problem Statement
JAG Company is a sweatshop (sweatshop is called "burakku kigyo" in Japanese), and you are the CEO for the company.
You are planning to determine employees' salary as low as possible (employees are numbered from to ). Each employee's salary amount must be a positive integer greater than zero. At that time, you should pay attention to the employees' contribution degree. If the employee 's contribution degree is greater than the employee 's contribution degree , the employee must get higher salary than the employee 's salary. If the condition is not satisfied, employees may complain about their salary amount.
However, it is not necessarily satisfied in all pairs of the employees, because each employee can only know his/her close employees' contribution degree and salary amount. Therefore, as long as the following two conditions are satisfied, employees do not complain to you about their salary amount.
- If the employees and are close to each other, must be satisfied, where is the employee 's salary amount.
- If the employee is close to the employees and , must be satisfied.
Write a program that computes the minimum sum of all employees' salary amount such that no employee complains about their salary.
Input
Each input is formatted as follows:
...
...
The first line contains an integer (), which indicates the number of employees. The second line contains integers () representing the contribution degree of employee .
The third line contains an integer (), which specifies the number of relationships. Each of the following lines contains two integers and (, ). It represents that the employees and are close to each other. There is no more than one relationship between each pair of the employees.
Output
Print the minimum sum of all employees' salary amounts in a line.
Sample Input 1
3
1 3 3
2
1 2
1 3```
### Output for the Sample Input 1
```plain
5```
* * *
### Sample Input 2
```plain
3
1 2 3
2
1 2
1 3```
### Output for the Sample Input 2
```plain
6```
* * *
### Sample Input 3
```plain
4
1 1 2 2
2
1 2
3 4```
### Output for the Sample Input 3
```plain
4```
* * *
### Sample Input 4
```plain
5
1 2 5 5 1
6
1 2
4 1
2 3
5 2
4 3
4 5 ```
### Output for the Sample Input 4
```plain
10```
* * *
### Sample Input 5
```plain
6
4 3 2 1 5 3
7
4 2
1 5
2 6
6 5
4 1
1 6
6 3```
### Output for the Sample Input 5
```plain
13```
* * *