当前位置:网站首页>【练习-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的数就会返回它的个数。
可以用这个来求某个数的个数。
边栏推荐
猜你喜欢
Learning record: use stm32f1 watchdog
信息安全-威胁检测-flink广播流BroadcastState双流合并应用在过滤安全日志
Record of force deduction and question brushing
STM32 how to use stlink download program: light LED running light (Library version)
Matlab example: two expressions of step function
用C语言写网页游戏
洛谷P1102 A-B数对(二分,map,双指针)
LeetCode#19. Delete the penultimate node of the linked list
ucore lab 2
Ball Dropping
随机推荐
Research Report on printed circuit board (PCB) connector industry - market status analysis and development prospect forecast
Learning record: USART serial communication
Alice and Bob (2021牛客暑期多校训练营1)
Research Report on market supply and demand and strategy of China's Medical Automation Industry
E. Breaking the Wall
LeetCode#62. Different paths
Eslint--- error: newline required at end of file but not found (EOL last) solution
Market trend report, technological innovation and market forecast of pneumonia drugs obtained by Chinese hospitals
China's PCB connector market trend report, technological innovation and market forecast
Learning records: serial communication and solutions to errors encountered
初入Redis
SSM框架常用配置文件
学习记录:使用STM32外部输入中断
China medical check valve market trend report, technical dynamic innovation and market forecast
力扣刷题记录--完全背包问题(一)
HDU - 6024 Building Shops(女生赛)
力扣刷题记录
Learning record: understand systick system timer and write delay function
学习记录:理解 SysTick系统定时器,编写延时函数
Opencv learning log 13 corrosion, expansion, opening and closing operations