A12158 | Train Hard, Win Easy
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Zibi is a competitive programming coach. There are $n$ 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 $i$ -th competitor will always have score $x_i$ when he codes the first task and $y_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 $m$ 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?
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 $i$ -th competitor will always have score $x_i$ when he codes the first task and $y_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 $m$ 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 $n$ and $m$ ( $2 \le n \le 300\,000$ , $0 \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 $n$ lines contains two integers $x_i$ and $y_i$ ( $-10^9 \le x_i, y_i \le 10^9$ ) — the scores which will the $i$ -th competitor get on the first problem and on the second problem. It is guaranteed that there are no two people having both $x_i$ and $y_i$ same.
Each of the next $m$ lines contain two integers $u_i$ and $v_i$ ( $1 \le u_i, v_i \le n$ , $u_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.
Each of the next $n$ lines contains two integers $x_i$ and $y_i$ ( $-10^9 \le x_i, y_i \le 10^9$ ) — the scores which will the $i$ -th competitor get on the first problem and on the second problem. It is guaranteed that there are no two people having both $x_i$ and $y_i$ same.
Each of the next $m$ lines contain two integers $u_i$ and $v_i$ ( $1 \le u_i, v_i \le n$ , $u_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 $n$ integers — the sum of scores for all participants in the same order as they appear in the input.
输入输出样例
输入 #1
3 2 1 2 2 3 1 3 1 2 2 3
输出 #1
3 0 3
输入 #2
3 3 1 2 2 3 1 3 1 2 2 3 1 3
输出 #2
0 0 0
输入 #3
5 3 -1 3 2 4 1 1 3 5 2 2 1 4 2 3 3 5
输出 #3
4 14 4 16 10
In the first example, there will be only one team consisting of persons $1$ and $3$ . The optimal strategy for them is to assign the first task to the $3$ -rd person and the second task to the $1$ -st person, this will lead to score equal to $1 + 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...
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...
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted