题解 1164: 数组的距离

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

筛选

C++递归解题《数组的距离》

摘要:###** 注意:没有很好的处理递归,所以耗时可能会有所延长。 #### 基本思路就是:对于一个递增数组,如果前一个数大于b,则它后面的数一定大于b,所以后面的数不用考虑,这样会节省很多时间。 `……

数组的距离

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

数组的距离

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

1164: 数组的距离(绝对值abs)

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>#include<cmath>using namespace std;int main(){  ……

数组的距离(简单嘞C++)

摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; #include<algorithm> #include<cmath> int m……

1164: 数组的距离

摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> int main(){ int a,b,c,d,i,j,q,min; scanf("%d……