使用sort函数排序 摘要:解题思路:使用sort函数直接排序然后相减把结果相加注意事项:参考代码:#include<bits/stdc++.h>using namespace std;bool compare(int a,in…… 题解列表 2024年10月29日 0 点赞 0 评论 139 浏览 评分:7.3
1286: 最大配对-c++ 摘要:解题思路:1.升序排序 2.a从头b从尾拼凑 头尾拼凑过程:1: 2 7 52: 3 6 83: 5 4 94: 6 1 14注意事项:数组一定要开大一点!! 参考代…… 题解列表 2024年03月24日 0 点赞 0 评论 102 浏览 评分:9.0
1286: 最大配对 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cmath>#include<iomanip>#include<algorithm>using namespace …… 题解列表 2024年03月10日 0 点赞 0 评论 268 浏览 评分:9.9
1286: 最大配对 摘要:```cpp #include #include using namespace std; const int N=1e5+10; int a[N],b[N]; int main() {…… 题解列表 2023年04月15日 0 点赞 0 评论 186 浏览 评分:9.9
P1019-题解(C++代码) 摘要:第一眼看过去就有点的像贪心 但是 貌似还是真是贪心 既然题目要求我们绝对值之和最大 那么我们每次当前匹配的两个数字之和最大 局部到全部 就可以推出整体绝对值之和最大 那么排序就好了 …… 题解列表 2019年08月30日 0 点赞 0 评论 325 浏览 评分:0.0
P1019 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<algorithm> using namespace std; int a[10050],b[10050];…… 题解列表 2019年05月05日 0 点赞 0 评论 334 浏览 评分:0.0
P1019 (C++代码) 摘要:解题思路: 要想使差值最大,直接把两个数组排序,最大减最小。 C++里面有一个sort函数,使用非常方面,并且效率也很高,这 题解列表 2019年02月17日 0 点赞 0 评论 607 浏览 评分:0.0
P1019 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cmath> #include<algorithm> using namespace std; const…… 题解列表 2018年06月18日 0 点赞 0 评论 620 浏览 评分:0.0