시간 제한메모리 제한제출정답맞힌 사람정답 비율
3 초 1024 MB46141233.333%

문제

In JOI Kingdom, there are $N$ islands, numbered from $1$ to $N$. Each island has the insecurity level. The insecurity level of the island $i$ ($1 ≤ i ≤ N$) is $S_i$.

In JOI Kingdom, ships between pairs of islands are mostly used as the methods of transportations. There are $M$ ships, numbered from $1$ to $M$. The ship $j$ ($1 ≤ j ≤ M$) connects the island $A_j$ and the island $B_j$. We can run ships when necessary. It is possible to travel from any island to any other island by taking a number of ships.

In JOI Kingdom, there is a plan to introduce new ships. We can choose any pairs of islands where newly introduced ships connect.

One day, an incident occurred. A ship at anchor was attacked. Prime minister K of JOI Kingdom decided to introduce new ships. He also demands that ships in JOI Kingdom should satisfy the following Security Condition.

  • When a ship is anchored at the island $i$ ($1 ≤ i ≤ N$), the number of security guards on the ship is greater than or equal to $S_i$.

However, since it is expensive to hire security guards, we want to minimize the number of hired security guards. As long as the condition “it is possible to travel from any island to any other island by taking a number of ships” is satisfied, it is possible to abolish ships which are currently running.

Therefore, we will run ships as follows. Here, $k$ is the number of newly introduced ships.

  1. For each of the $k$ newly introduced ships, we choose two islands where it connects.
  2. We choose a number of (more than or equal to $0$) ships, and we abolish them. It is allowed to abolish newly introduced ships.
  3. For each of the ships, we anchor it at one of the two islands where it connects. We make a number of security guards get on it. Moreover, the following conditions should be satisfied.

Condition: For every pair $u$, $v$ ($1 ≤ u ≤ N$, $1 ≤ v ≤ N$) of islands, it is possible to transport a passenger from the island $u$ to the island $v$ by repeating the following operations a number of times. In the process, Security Condition should be satisfied all the time.

  • We make a passenger or security guards get on a ship which is anchored at the island where the passenger or security guards are staying.
  • We make a passenger or security guards get off a ship at the island where the ship is currently anchored.
  • We move a ship from the island where the ship is currently anchored to the other island where the ship connects.

Since the budget is limited, we can introduce at most $Q$ new ships. For each $k$ ($0 ≤ k ≤ Q$), Prime minister $K$ wants to know the minimum possible number of hired security guards if the number of newly introduced ships is $k$.

Write a program which, given the information of islands and the routes of the ships and the number of new ships we can introduce, calculates the minimum possible number of hired security guards for each $k$.

입력

Read the following data from the standard input.

$N$ $M$ $Q$

$S_1$ $S_2$ $\cdots$ $S_N$

$A_1$ $B_1$

$A_2$ $B_2$

$\vdots$

$A_M$ $B_M$

출력

Write $Q+1$ lines to the standard output. The $(k+1)$-th line ($0 ≤ k ≤ Q$) of output should contain the minimum possible number of hired security guards if the number of newly introduced ships is $k$.

제한

  • $2 ≤ N ≤ 200\,000$.
  • $N - 1 ≤ M ≤ 400\,000$.
  • $0 ≤ Q ≤ 200\,000$.
  • $1 ≤ S_i ≤ 10^9$ ($1 ≤ i ≤ N$).
  • $1 ≤ A_j < B_j ≤ N$ ($1 ≤ j ≤ M$). $(A_x, B_x) \ne (A_y, B_y)$ ($1 ≤ x < y ≤ M$).
  • It is possible to travel from any island to any other island by taking a number of ships.
  • Given values are all integers.

서브태스크

번호배점제한
112

$M = N - 1$, $Q = 0$, $S_i ≤ 2$ ($1 ≤ i ≤ N$), $A_j = j$, $B_j = j + 1$ ($1 ≤ j ≤ M$).

213

$M = N - 1$, $Q = 0$, $A_j = j$, $B_j = j + 1$ ($1 ≤ j ≤ M$).

312

$M = N - 1$, $Q = 0$.

413

$Q = 0$.

58

$N ≤ 16$.

618

$N ≤ 3\,000$.

724

No additional constraints.

예제 입력 1

4 3 0
2 1 3 2
1 2
2 3
3 4

예제 출력 1

7

If the number of newly introduced ships is $0$, we need $7$ security guards. For example, the conditions are satisfied if we allocate the ships and $7$ security guards as follows.

  • The ship $1$ is initially anchored at the island $2$, and two security guards get on the ship $1$.
  • The ship $2$ is initially anchored at the island $2$, and two security guards get on the ship $2$.
  • The ship $3$ is initially anchored at the island $4$, and three security guards get on the ship $3$.

Let us explain how to transport a passenger in the following two cases.

  • We transport a passenger from the island $1$ to the island $4$.
  • We transport a passenger from the island $3$ to the island $2$.

We can transport a passenger from the island $1$ to the island $4$ as follows. The islands where the ships $1, 2, 3$ are anchored, and the numbers of security guards on the ships $1, 2, 3$ are written in this order. The numbers of security guards on the islands $1, 2, 3, 4$ are written in this order.

# Operation The islands where the ships are anchored The numbers of security guards on the ships The numbers of security guards on the islands
- - $2, 2, 4$ $2, 2, 3$ $0, 0, 0, 0$
$1$ Move the ship $1$ from the island $2$ to the island $1$ $1, 2, 4$ $2, 2, 3$ $0, 0, 0, 0$
$2$ Make a passenger get on the ship $1$ $1, 2, 4$ $2, 2, 3$ $0, 0, 0, 0$
$3$ Move the ship $1$ from the island $1$ to the island $2$ $2, 2, 4$ $2, 2, 3$ $0, 0, 0, 0$
$4$ Make one security guard and the passenger get off the ship $1$ $2, 2, 4$ $1, 2, 3$ $0, 1, 0, 0$
$5$ Make one security guard and the passenger get on the ship $2$ $2, 2, 4$ $1, 3, 3$ $0, 0, 0, 0$
$6$ Move the ship $2$ from the island $2$ to the island $3$ $2, 3, 4$ $1, 3, 3$ $0, 0, 0, 0$
$7$ Make the passenger get off the ship $2$ $2, 3, 4$ $1, 3, 3$ $0, 0, 0, 0$
$8$ Move the ship $3$ from the island $4$ to the island $3$ $2, 3, 3$ $1, 3, 3$ $0, 0, 0, 0$
$9$ Make the passenger get on the ship $3$ $2, 3, 3$ $1, 3, 3$ $0, 0, 0, 0$
$10$ Move the ship $3$ from the island $3$ to the island $4$ $2, 3, 4$ $1, 3, 3$ $0, 0, 0, 0$
$11$ Make the passenger get off the ship $3$ $2, 3, 4$ $1, 3, 3$ $0, 0, 0, 0$

We can transport a passenger from the island $3$ to the island $2$ as follows.

# Operation The islands where the ships are anchored The numbers of security guards on the ships The numbers of security guards on the islands
- - $2, 2, 4$ $2, 2, 3$ $0, 0, 0, 0$
$1$ Make one security guard get off the ship $1$ $2, 2, 4$ $1, 2, 3$ $0, 1, 0, 0$
$2$ Make one security guard get on the ship $2$ $2, 2, 4$ $1, 3, 3$ $0, 0, 0, 0$
$3$ Move the ship $2$ from the island $2$ to the island $3$ $2, 3, 4$ $1, 3, 3$ $0, 0, 0, 0$
$4$ Make a passenger get on the ship $2$ $2, 3, 4$ $1, 3, 3$ $0, 0, 0, 0$
$5$ Move the ship $2$ from the island $3$ to the island $2$ $2, 2, 4$ $1, 3, 3$ $0, 0, 0, 0$
$6$ Make the passenger get off the ship $2$ $2, 2, 4$ $1, 3, 3$ $0, 0, 0, 0$

Since it is impossible to satisfy the conditions if the number of security guards is less than or equal to $6$, output $7$.

This sample input satisfies the constraints of Subtasks 2, 3, 4, 5, 6, 7.

예제 입력 2

4 3 1
2 1 3 2
1 2
2 3
3 4

예제 출력 2

7
5

If the number of newly introduced ships is $0$, similarly as Sample Input 1, we need $7$ security guards.

If the number of newly introduced ships is $1$, we need $5$ security guards. For example, the conditions are satisfied if we allocate the ships and $5$ security guards as follows.

  • We introduce a new ship connecting the island $2$ and the island $4$. (In the following, we call it the ship $4$.)
  • We abolish the ship $3$.
  • We initially anchor the ship $1$ at the island $2$, and make two security guards get on the ship $1$.
  • We initially anchor the ship $2$ at the island $2$, and make one security guard get on the ship $2$.
  • We initially anchor the ship $4$ at the island $2$, and make two security guards get on the ship $4$.

This sample input satisfies the constraints of Subtasks 5, 6, 7.

예제 입력 3

3 3 0
1 1 1
1 2
1 3
2 3

예제 출력 3

2

If the number of newly introduced ships is $0$, we need $2$ security guards. For example, the conditions are satisfied if we allocate the ships and $2$ security guards as follows.

  • We abolish the ship $3$.
  • We initially anchor the ship $1$ at the island $1$, and make one security guard get on the ship $1$.
  • We initially anchor the ship $2$ at the island $1$, and make one security guard get on the ship $2$.

This sample input satisfies the constraints of Subtasks 4, 5, 6, 7.

예제 입력 4

8 7 0
2 2 2 2 2 2 2 2
1 2
2 3
3 4
4 5
5 6
6 7
7 8

예제 출력 4

14

This sample input satisfies the constraints of all the subtasks.

예제 입력 5

8 7 0
16 39 36 23 15 48 23 56
1 2
1 3
2 4
2 5
3 6
3 7
7 8

예제 출력 5

245

This sample input satisfies the constraints of Subtasks 3, 4, 5, 6, 7.

채점 및 기타 정보

  • 예제는 채점하지 않는다.