传送门 https://www.cnblogs.com/violet-acmer/p/9898636.html 题解: 枚举两两间出所有的可能加和,然后遍历一遍这 n 个数,找出满足条件的总个数. 这就是暴力啊....................... AC代码: #include<bits/stdc++.h> using namespace std; #define ll long long +; int n; int a[maxn]; map<int ,int >mymap
#include<iostream> using namespace std; int main() { int n; int sum = 0; int num[200]; cin >> n; if (n >= 3 && n <= 100) { for (int a = 0; a < n; a++) { cin >> num[a]; } for (int i = 0; i < n; i++) { bool flag = false
求数组有多少个数,恰好等于集合中另外两个(不同的)数之和? 注意到数集比较小,而且涉及到下标的加法,可以很自然地想到卷积 注意减去自己加自己的贡献 真是一道NTT练手好题 #include <iostream> #include <cstdio> #include <cstring> using namespace std; #define Dollar1 998244353 #define MAXN 70001 #define int long long int li
import java.util.LinkedList; import java.util.Scanner; public class Main { private static Scanner cin; public static void main(String args[]) throws Exception { cin = new Scanner(System.in); int n = cin.nextInt(); int ret = 0; LinkedList<Integer> li
做统计的时候,null是不计算在count以内的.所以字段的值最好不要设置为null. 比如:select count(user_id) as beyond_num from fs_users_added where credits<410 && user_id!=75语句,就统计不到null的数据行. 我需要统计出多少个用户的学分比这个低.计算排名.结果由于credits值有null的情况,造成了数据统计不准确.明明是90个用户超过,结果算出来是54个用户. 解决办法是:创建字段的