题解 1164: 数组的距离

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

数组的距离

摘要:#include #include using namespace std; int main() {     int num1,num2,a[1010],b[1010],temp,sum=……

1164: 数组的距离

摘要:```cpp #include #include using namespace std; struct number { int value,flag; }; int mai……

数组的距离

摘要:#解题思路 首先,这道题数据量不大,也不难,我们只需要从小到大排序一遍,找两个相邻的不同数组里元素的差最小的那个就行了,对于不同数组的这个条件,我们进行简单的记录一下就行,只需要遍历一次就行,没必要……