- Time limit: 1.00 s
- Memory limit: 512 MB
A game has rooms and tunnels between them. Each room has a certain number of coins. What is the maximum number of coins you can collect while moving through the tunnels when you can freely choose your starting and ending room?
Input
The first input line has two integers and : the number of rooms and tunnels. The rooms are numbered .
Then, there are integers : the number of coins in each room.
Finally, there are lines describing the tunnels. Each line has two integers and : there is a tunnel from room to room . Each tunnel is a one-way tunnel.
Output
Print one integer: the maximum number of coins you can collect.
Constraints
Example
Input:
4 4 4 5 2 7 1 2 2 1 1 3 2 4
Output:
16