题解 1164: 数组的距离

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

筛选

数组距离简单求解

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<vector>#include<algorithm>using namespace std;void InPut(v……

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

摘要:解题思路:题目不是要求两个数组彼此之间差的绝对值中最小的一个吗?那就一个个算,m,n的范围不大,哪个最小,min就存储哪个的值,负数也能计算。注意事项:参考代码:#include<stdio.h> ……

数组距离qdqdqwd

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

1164: 数组的距离

摘要:解题思路:注意事项:参考代码:m,n=map(int,input().split()) ls=list(map(int,input().split())) lt=list(map(int,inpu……