A10236 | Professor GukiZ and Two Arrays
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Professor GukiZ has two arrays of integers, a and b. Professor wants to make the sum of the elements in the array a $s_{a}$ as close as possible to the sum of the elements in the array b $s_{b}$ . So he wants to minimize the value $v=|s_{a}-s_{b}|$ .
In one operation professor can swap some element from the array a and some element from the array b. For example if the array a is $[5,1,3,2,4]$ and the array b is $[3,3,2]$ professor can swap the element $5$ from the array a and the element $2$ from the array b and get the new array a $[2,1,3,2,4]$ and the new array b $[3,3,5]$ .
Professor doesn't want to make more than two swaps. Find the minimal value $v$ and some sequence of no more than two swaps that will lead to the such value $v$ . Professor makes swaps one by one, each new swap he makes with the new arrays a and b.
In one operation professor can swap some element from the array a and some element from the array b. For example if the array a is $[5,1,3,2,4]$ and the array b is $[3,3,2]$ professor can swap the element $5$ from the array a and the element $2$ from the array b and get the new array a $[2,1,3,2,4]$ and the new array b $[3,3,5]$ .
Professor doesn't want to make more than two swaps. Find the minimal value $v$ and some sequence of no more than two swaps that will lead to the such value $v$ . Professor makes swaps one by one, each new swap he makes with the new arrays a and b.
输入格式
The first line contains integer $n$ ( $1<=n<=2000$ ) — the number of elements in the array a.
The second line contains $n$ integers $a_{i}$ ( $-10^{9}<=a_{i}<=10^{9}$ ) — the elements of the array a.
The third line contains integer $m$ ( $1<=m<=2000$ ) — the number of elements in the array b.
The fourth line contains $m$ integers $b_{j}$ ( $-10^{9}<=b_{j}<=10^{9}$ ) — the elements of the array b.
The second line contains $n$ integers $a_{i}$ ( $-10^{9}<=a_{i}<=10^{9}$ ) — the elements of the array a.
The third line contains integer $m$ ( $1<=m<=2000$ ) — the number of elements in the array b.
The fourth line contains $m$ integers $b_{j}$ ( $-10^{9}<=b_{j}<=10^{9}$ ) — the elements of the array b.
输出格式
In the first line print the minimal value $v=|s_{a}-s_{b}|$ that can be got with no more than two swaps.
The second line should contain the number of swaps $k$ ( $0<=k<=2$ ).
Each of the next $k$ lines should contain two integers $x_{p},y_{p}$ ( $1<=x_{p}<=n,1<=y_{p}<=m$ ) — the index of the element in the array a and the index of the element in the array b in the $p$ -th swap.
If there are several optimal solutions print any of them. Print the swaps in order the professor did them.
The second line should contain the number of swaps $k$ ( $0<=k<=2$ ).
Each of the next $k$ lines should contain two integers $x_{p},y_{p}$ ( $1<=x_{p}<=n,1<=y_{p}<=m$ ) — the index of the element in the array a and the index of the element in the array b in the $p$ -th swap.
If there are several optimal solutions print any of them. Print the swaps in order the professor did them.
输入输出样例
输入 #1
5 5 4 3 2 1 4 1 1 1 1
输出 #1
1 2 1 1 4 2
输入 #2
5 1 2 3 4 5 1 15
输出 #2
0 0
输入 #3
5 1 2 3 4 5 4 1 2 3 4
输出 #3
1 1 3 1
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted