题解 1164: 数组的距离

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

筛选

【数组的距离】-题解(C++代码)思路简单

摘要:~~思路简单~~,效率一般的说,遍历两个数组,双双相减取绝对值取最小的说 **小优化:由于f和g都是升序数组,我们每次拿f中的元素和g中的元素相减取绝对值,当res得到更新后,不需要继续往下算,因为……

【数组的距离】 (C++代码)

摘要:##### 原题链接:[【数组的距离】](https://www.dotcpp.com/oj/problem1164.html "【数组的距离】") **提交了N次,oj显示运行错误50%,非常……

【数组的距离】 (C++代码)

摘要:解题思路:排序后判断两个数组大小是否重合注意事项:使用sort排序方便一点参考代码:#include<bits/stdc++.h>using namespace std;bool cmp(int a,……

【数组的距离】 (C++代码)

摘要:解题思路:注意事项:C++是世界上最好的语言参考代码:#include <iostream>#include <vector>#include <algorithm>#include <math.h>……

WU-【数组的距离】 (C++代码)

摘要:注意别数组越界了  s数组开大点 位100000+5再用快速排序 避免了超时参考代码:#include<stdio.h> #include<math.h> #include<iostream> ……