1286基础解法(Python)
摘要:解题思路:最大-最小注意事项:合理运用数据类型简化处理难度参考代码:m = int(input())lst_1 = sorted(map(int, input().split()))lst_2 = s……
1286: 最大配对
摘要:```cpp
#include
#include
using namespace std;
const int N=1e5+10;
int a[N],b[N];
int main()
{……
P1019题解 (Java代码)
摘要:import java.util.Arrays;
import java.util.Scanner;
public class Main {
public static void ma……
1286: 最大配对
摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cmath>#include<iomanip>#include<algorithm>using namespace ……
1286: 最大配对
摘要: import java.util.*;
public class 最大配对 {
public static void main(String[] args) {
Scanner sc ……
P1019-题解(C语言代码)满分题解!!
摘要: #include
#include
int main()
{
int n,a[10000],b[10000];
scanf("%d",&n……
1286: 最大配对-c++
摘要:解题思路:1.升序排序 2.a从头b从尾拼凑 头尾拼凑过程:1: 2 7 52: 3 6 83: 5 4 94: 6 1 14注意事项:数组一定要开大一点!! 参考代……
使用sort函数排序
摘要:解题思路:使用sort函数直接排序然后相减把结果相加注意事项:参考代码:#include<bits/stdc++.h>using namespace std;bool compare(int a,in……
P1019-题解(C语言代码)
摘要:```c
#include
#include
int a[10005];
int b[10005];
void sort(int n){//主要思路就是排序,题目简单
int temp;……