题解 2932: 和为给定数

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

筛选

:和为给定数 与 二分查找模板

摘要:解题思路:数组排序 然后通过差值找另一半注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a[100006];//下面就是二……

和为给定数--二分

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