当前位置:网站首页>【练习-11】4 Values whose Sum is 0(和为0的4个值)
【练习-11】4 Values whose Sum is 0(和为0的4个值)
2022-07-06 09:26:00 【火焰车】
Description
The SUM problem can be formulated as follows: given four lists A,B,C,D of integer values, compute how many quadruplet (a,b,c,d)∈A×B×C×D are such that a+b+c+d=0. In the following, we assume that all lists have the same size n.
Input
The input begins with a single positive integer on a line by itself indicating the number of the cases following, each of them as described below. This line is followed by a blank line, and there is also a blank line between two consecutive inputs.
The first line of the input file contains the size of the lists n (this value can be as large as 4000). We then have n lines containing four integer values (with absolute value as large as 228) that belong respectively to A,B,C and D.
Output
For each test case, your program has to write the number quadruplets whose sum is zero.
The outputs of two consecutive cases will be separated by a blank line.
Samples
Input
1
6
-45 22 42 -16
-41 -27 56 30
-36 53 -37 77
-36 30 -75 -46
26 -38 -10 62
-32 -54 -6 45
Output
5
Hint
Sample Explanation: Indeed, the sum of the five following quadruplets is zero: (-45, -27, 42, 30), (26, 30, -10, -46), (-32, 22, 56, -46), (-32, 30, -75, 77), (-32, -54, 56, 30).
题意:
每行输入一个a,b,c,d,问输入的这些a[n],b[n],c[n],d[n]有多少种组合可以使a+b+c+d=0成立。
题意很简单。
首先我们肯定能想到的暴力枚举,四层for循环,但是很显然会超时(4000^4)。
这时间,可以想到分治(把大问题化成若干个小问题)。我可以先把a+b记录下来,然后看是否有-c-d(a+b+c+d=0 ==> a+b = -c-d)。
AC代码:
#include<bits/stdc++.h>
using namespace std;
#define CLEAR(a) memset(a,0,sizeof a)
#define Clear(a) memset(a,-1,sizeof a)
typedef long long ll;
const int N = 1e5+5;
const ll mod = 1e9+7;
ll a[4005],b[4005],c[4005],d[4005];
ll tmp[16000005];
int main()
{
int n,t;
ll res;
cin>>t;
while(t--)
{
while (~scanf("%d",&n))
{
res = 0;
for (int i = 0; i < n; i++)
scanf ("%lld%lld%lld%lld", &a[i], &b[i], &c[i], &d[i]);
int cnt = 0;
for (int i = 0; i < n; i++)
for (int j = 0; j < n; j++)
tmp[cnt++] = c[i] + d[j];
sort(tmp, tmp + cnt);
for (int i = 0; i < n; i++)
for (int j = 0; j < n; j++)
{
ll sum =-a[i]-b[j];
res += upper_bound(tmp,tmp+cnt,sum) - lower_bound(tmp,tmp+cnt,sum);
}
printf ("%lld\n\n",res);
}
}
return 0;
}
用scanf是为了防止超时。。
这里最重要的是理解:
res += upper_bound(tmp,tmp+cnt,sum) - lower_bound(tmp,tmp+cnt,sum);
upper_bound是返回大于,lower_bound是返回大于等于。这时间如果没有等于的话,那么返回的一定是0,(lower = upper = 第一个大于sum的数)。但是如果有等于sum的数就会返回它的个数。
可以用这个来求某个数的个数。
边栏推荐
- 0-1背包问题(一)
- B - 代码派对(女生赛)
- 力扣刷题记录
- China exterior wall cladding (EWC) market trend report, technical dynamic innovation and market forecast
- LeetCode#237. Delete nodes in the linked list
- C语言是低级和高级的分水岭
- Opencv learning log 32 edge extraction
- Opencv learning log 13 corrosion, expansion, opening and closing operations
- Medical colposcope Industry Research Report - market status analysis and development prospect forecast
- JS --- JS function and scope (II)
猜你喜欢

Learning record: Tim - capacitive key detection

csapp shell lab

STM32学习记录:输入捕获应用

ucorelab3

学习记录:TIM—基本定时器

Learning records: serial communication and solutions to errors encountered

LeetCode#62. Different paths

C语言学习笔记

JS --- all knowledge of JS objects and built-in objects (III)

JS --- all basic knowledge of JS (I)
随机推荐
学习记录:STM32F103 时钟系统概述工作原理
LeetCode#2062. Count vowel substrings in strings
SSM框架常用配置文件
学习记录:理解 SysTick系统定时器,编写延时函数
STM32 learning record: LED light flashes (register version)
JS --- BOM details of JS (V)
ucore lab7
LeetCode#237. Delete nodes in the linked list
信息安全-威胁检测-flink广播流BroadcastState双流合并应用在过滤安全日志
Research Report of pharmaceutical solvent industry - market status analysis and development prospect prediction
0-1背包問題(一)
初入Redis
ucore lab 2
Research Report on market supply and demand and strategy of China's earth drilling industry
C语言是低级和高级的分水岭
Opencv learning log 30 -- histogram equalization
Interesting drink
C 基本语法
CS zero foundation introductory learning record
Research Report on pharmaceutical R & D outsourcing service industry - market status analysis and development prospect forecast