#P1043E. Train Hard, Win Easy

    ID: 3098 Type: RemoteJudge 2000ms 256MiB Tried: 0 Accepted: 0 Difficulty: (None) Uploaded By: Tags>constructive algorithmsgreedymathsortings*1900

Train Hard, Win Easy

No submission language available for this problem.

Description

Zibi is a competitive programming coach. There are nn competitors who want to be prepared well. The training contests are quite unusual – there are two people in a team, two problems, and each competitor will code exactly one of them. Of course, people in one team will code different problems.

Rules of scoring also aren't typical. The first problem is always an implementation problem: you have to implement some well-known algorithm very fast and the time of your typing is rated. The second one is an awful geometry task and you just have to get it accepted in reasonable time. Here the length and difficulty of your code are important. After that, Zibi will give some penalty points (possibly negative) for each solution and the final score of the team is the sum of them (the less the score is, the better).

We know that the ii-th competitor will always have score xix_i when he codes the first task and yiy_i when he codes the second task. We can assume, that all competitors know each other's skills and during the contest distribute the problems in the way that minimizes their final score. Remember that each person codes exactly one problem in a contest.

Zibi wants all competitors to write a contest with each other. However, there are mm pairs of people who really don't like to cooperate and they definitely won't write a contest together. Still, the coach is going to conduct trainings for all possible pairs of people, such that the people in pair don't hate each other. The coach is interested for each participant, what will be his or her sum of scores of all teams he trained in?

The first line contains two integers nn and mm (2n3000002 \le n \le 300\,000, 0m3000000 \le m \le 300\,000) — the number of participants and the number of pairs of people who will not write a contest together.

Each of the next nn lines contains two integers xix_i and yiy_i (109xi,yi109-10^9 \le x_i, y_i \le 10^9) — the scores which will the ii-th competitor get on the first problem and on the second problem. It is guaranteed that there are no two people having both xix_i and yiy_i same.

Each of the next mm lines contain two integers uiu_i and viv_i (1ui,vin1 \le u_i, v_i \le n, uiviu_i \ne v_i) — indices of people who don't want to write a contest in one team. Each unordered pair of indices will appear at most once.

Output nn integers — the sum of scores for all participants in the same order as they appear in the input.

Input

The first line contains two integers nn and mm (2n3000002 \le n \le 300\,000, 0m3000000 \le m \le 300\,000) — the number of participants and the number of pairs of people who will not write a contest together.

Each of the next nn lines contains two integers xix_i and yiy_i (109xi,yi109-10^9 \le x_i, y_i \le 10^9) — the scores which will the ii-th competitor get on the first problem and on the second problem. It is guaranteed that there are no two people having both xix_i and yiy_i same.

Each of the next mm lines contain two integers uiu_i and viv_i (1ui,vin1 \le u_i, v_i \le n, uiviu_i \ne v_i) — indices of people who don't want to write a contest in one team. Each unordered pair of indices will appear at most once.

Output

Output nn integers — the sum of scores for all participants in the same order as they appear in the input.

Samples

Sample Input 1

3 2
1 2
2 3
1 3
1 2
2 3

Sample Output 1

3 0 3

Sample Input 2

3 3
1 2
2 3
1 3
1 2
2 3
1 3

Sample Output 2

0 0 0

Sample Input 3

5 3
-1 3
2 4
1 1
3 5
2 2
1 4
2 3
3 5

Sample Output 3

4 14 4 16 10

Note

In the first example, there will be only one team consisting of persons 11 and 33. The optimal strategy for them is to assign the first task to the 33-rd person and the second task to the 11-st person, this will lead to score equal to 1+2=31 + 2 = 3.

In the second example, nobody likes anyone, so there won't be any trainings. It seems that Zibi won't be titled coach in that case...