A14306 | A New Beginning
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Annie has gotten bored of winning every coding contest and farming unlimited rating. Today, she is going to farm potatoes instead.
Annie's garden is an infinite 2D plane. She has $n$ potatoes to plant, and the $i$ -th potato must be planted at $(x_i,y_i)$ . Starting at the point $(0, 0)$ , Annie begins walking, in one step she can travel one unit right or up (increasing her $x$ or $y$ coordinate by $1$ respectively). At any point $(X,Y)$ during her walk she can plant some potatoes at arbitrary points using her potato gun, consuming $\max(|X-x|,|Y-y|)$ units of energy in order to plant a potato at $(x,y)$ . Find the minimum total energy required to plant every potato.
Note that Annie may plant any number of potatoes from any point.
Annie's garden is an infinite 2D plane. She has $n$ potatoes to plant, and the $i$ -th potato must be planted at $(x_i,y_i)$ . Starting at the point $(0, 0)$ , Annie begins walking, in one step she can travel one unit right or up (increasing her $x$ or $y$ coordinate by $1$ respectively). At any point $(X,Y)$ during her walk she can plant some potatoes at arbitrary points using her potato gun, consuming $\max(|X-x|,|Y-y|)$ units of energy in order to plant a potato at $(x,y)$ . Find the minimum total energy required to plant every potato.
Note that Annie may plant any number of potatoes from any point.
输入格式
The first line contains the integer $n$ ( $1 \le n \le 800\,000$ ).
The next $n$ lines contain two integers $x_i$ and $y_i$ ( $0 \le x_i,y_i \le 10^9$ ), representing the location of the $i$ -th potato. It is possible that some potatoes should be planted in the same location.
The next $n$ lines contain two integers $x_i$ and $y_i$ ( $0 \le x_i,y_i \le 10^9$ ), representing the location of the $i$ -th potato. It is possible that some potatoes should be planted in the same location.
输出格式
Print the minimum total energy to plant all potatoes.
输入输出样例
输入 #1
2 1 1 2 2
输出 #1
0
输入 #2
2 1 1 2 0
输出 #2
1
输入 #3
3 5 5 7 7 4 9
输出 #3
2
输入 #4
10 5 1 4 0 9 6 0 2 10 1 9 10 3 10 0 10 8 9 1 5
输出 #4
19
输入 #5
10 1 1 2 2 2 0 4 2 4 0 2 0 0 2 4 0 4 2 5 1
输出 #5
6
In example $1$ , Annie can travel to each spot directly and plant a potato with no energy required.
In example $2$ , moving to $(1,0)$ , Annie plants the second potato using $1$ energy. Next, she travels to $(1,1)$ and plants the first potato with $0$ energy.
In example $2$ , moving to $(1,0)$ , Annie plants the second potato using $1$ energy. Next, she travels to $(1,1)$ and plants the first potato with $0$ energy.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted