#P1220E. Tourism

    ID: 2188 Type: RemoteJudge 2000ms 256MiB Tried: 0 Accepted: 0 Difficulty: (None) Uploaded By: Tags>dfs and similardpdsugraphsgreedytrees*2200

Tourism

No submission language available for this problem.

Description

Alex decided to go on a touristic trip over the country.

For simplicity let's assume that the country has nn cities and mm bidirectional roads connecting them. Alex lives in city ss and initially located in it. To compare different cities Alex assigned each city a score wiw_i which is as high as interesting city seems to Alex.

Alex believes that his trip will be interesting only if he will not use any road twice in a row. That is if Alex came to city vv from city uu, he may choose as the next city in the trip any city connected with vv by the road, except for the city uu.

Your task is to help Alex plan his city in a way that maximizes total score over all cities he visited. Note that for each city its score is counted at most once, even if Alex been there several times during his trip.

First line of input contains two integers nn and mm, (1n21051 \le n \le 2 \cdot 10^5, 0m21050 \le m \le 2 \cdot 10^5) which are numbers of cities and roads in the country.

Second line contains nn integers w1,w2,,wnw_1, w_2, \ldots, w_n (0wi1090 \le w_i \le 10^9) which are scores of all cities.

The following mm lines contain description of the roads. Each of these mm lines contains two integers uu and vv (1u,vn1 \le u, v \le n) which are cities connected by this road.

It is guaranteed that there is at most one direct road between any two cities, no city is connected to itself by the road and, finally, it is possible to go from any city to any other one using only roads.

The last line contains single integer ss (1sn1 \le s \le n), which is the number of the initial city.

Output single integer which is the maximum possible sum of scores of visited cities.

Input

First line of input contains two integers nn and mm, (1n21051 \le n \le 2 \cdot 10^5, 0m21050 \le m \le 2 \cdot 10^5) which are numbers of cities and roads in the country.

Second line contains nn integers w1,w2,,wnw_1, w_2, \ldots, w_n (0wi1090 \le w_i \le 10^9) which are scores of all cities.

The following mm lines contain description of the roads. Each of these mm lines contains two integers uu and vv (1u,vn1 \le u, v \le n) which are cities connected by this road.

It is guaranteed that there is at most one direct road between any two cities, no city is connected to itself by the road and, finally, it is possible to go from any city to any other one using only roads.

The last line contains single integer ss (1sn1 \le s \le n), which is the number of the initial city.

Output

Output single integer which is the maximum possible sum of scores of visited cities.

Samples

5 7
2 2 8 6 9
1 2
1 3
2 4
3 2
4 5
2 5
1 5
2
27
10 12
1 7 1 9 3 3 6 30 1 10
1 2
1 3
3 5
5 7
2 3
5 4
6 9
4 6
3 7
6 8
9 4
9 10
6
61