原题传送门:http://acm.hdu.edu.cn/showproblem.php?pid=2141
Can you find it?
Time Limit: 10000/3000 MS (Java/Others) Memory Limit: 32768/10000 K (Java/Others)
Total Submission(s): 10636 Accepted Submission(s): 2786
Problem Description
Give you three sequences of numbers A, B, C, then we give you a number X. Now you need to calculate if you can find the three numbers Ai, Bj, Ck, which satisfy the formula Ai+Bj+Ck = X.
Input
There are many cases. Every data case is described as followed: In the first line there are three integers L, N, M, in the second line there are L integers represent the sequence A, in the third line there are N integers represent the sequences B, in the forth line there are M integers represent the sequence C. In the fifth line there is an integer S represents there are S integers X to be calculated. 1<=L, N, M<=500, 1<=S<=1000. all the integers are 32-integers.
Output
For each case, firstly you have to print the case number as the form "Case d:", then for the S queries, you calculate if the formula can be satisfied or not. If satisfied, you print "YES", otherwise print "NO".
Sample Input
3 3 3
1 2 3
1 2 3
1 2 3
3
1
4
10
Sample Output
Case 1:
NO
YES
NO
Author
wangye
Source
Recommend
分析:这道题目一共有三个序列集L N M 很显然直接暴力三个for肯定超时,就算两个for for 然后第三个用二分,这也是超时的。那么能用一个for和一个二分解决吗,显然是可以的。首先我们班L,N两个序列集合并为一个。定义一个新的 数组用来存储所有L,N集中和的情况,就是for for(A[n++] = L[i]+N[i]),然后再用遍历A集合,每一步在M集合中二分搜索是否有符合x-A[i]的值(利用这个公式就可以转换下了C = X-(A+B)),如果有就YES 木有就NO;
如果你这么天真地想,恭喜你你又得超时了。既然二分可以提高搜索速度,我们为什么不把A拿来二分搜索呢?A中的元素最多会有25W个啊!!如果二分就是10^3级别的。。搜索次数,大大减小时间。如果拿M来二分,你只能从500到20左右。
OJ也证明了这一点,代码如下:
//搜索 HDU2141 #include<cstdio> #include<algorithm> using namespace std; #define MAXN 510 int AL[MAXN]; int AN[MAXN]; int A[MAXN*MAXN]; int AM[MAXN]; int L,M,N,x,s,k,temp,n; bool res; bool binSearch(int target,int len){ int low = 0; int high = len - 1; int mid; while(low<high) { mid = (low+high)/2; if(A[mid] == target)return true; else if(target>A[mid]) low = mid+1; else high = mid; } return false; } int main() { k = 1; while(scanf("%d%d%d",&L,&N,&M)==3) { n = 0; res = false; for(int i=0;i<L;i++) scanf("%d",AL+i); for(int i=0;i<N;i++) scanf("%d",AN+i); for(int i=0;i<M;i++) scanf("%d",AM+i); for(int i=0;i<L;i++){ for(int j=0;j<N;j++){ A[n++]= AL[i]+AN[j]; } } sort(A,A+n); sort(AM,AM+M); scanf("%d",&s); printf("Case %d:\n",k++); while(s--){ scanf("%d",&x); for(int i=0;i<M;i++){ res = binSearch(x-AM[i],n); if(res){ printf("YES\n"); break; } } if(!res){ printf("NO\n"); } } } return 0; }
相关推荐
HDU(杭州电子科技大学在线评测系统)是一个深受程序员喜爱的在线编程练习平台,它提供了丰富的算法题目供用户挑战,帮助他们提升编程技能和算法理解能力。"hdu.rar_hdu"这个压缩包文件很可能是某位程序员整理的他在...
【标题】"HDU_2010.rar"是一个压缩包文件,其中包含了与"HDU 2010"相关的资源,特别是针对"HDU ACM20"比赛的编程题目。"hdu 2010"和"hdu 20"可能是该比赛的不同简称或分类,而"hdu acm20"可能指的是该赛事的第20届...
【标题】"HDU题目java实现"所涉及的知识点主要集中在使用Java编程语言解决杭州电子科技大学(HDU)在线评测系统中的算法问题。HDU是一个知名的在线编程竞赛平台,它提供了大量的算法题目供参赛者练习和提交解决方案...
ACM HDU 题目分类 ACM HDU 题目分类是指对 HDU 在线判题系统中题目的分类,总结了大约十来个分类。这些分类将有助于编程选手更好地理解和解决问题。 DP 问题 DP(Dynamic Programming,动态规划)是一种非常重要...
HDU1059的代码
hdu1001解题报告
hdu 1574 passed sorce
【标题】"HDU DP动态规划"涉及到的是在算法领域中的动态规划(Dynamic Programming,简称DP)技术,这是解决复杂问题的一种高效方法,尤其适用于有重叠子问题和最优子结构的问题。动态规划通常用于优化多阶段决策...
### hdu1250高精度加法 #### 背景介绍 在计算机科学与编程竞赛中,处理大整数运算(特别是加法、减法、乘法等)是常见的需求之一。当数字的位数超过了标准数据类型(如`int`、`long`等)所能表示的最大值时,就需要...
【ACM HDU】指的是在ACM(国际大学生程序设计竞赛,International Collegiate Programming Contest)中,参赛者在杭州电子科技大学(Hangzhou Dianzi University,简称HDU)的在线评测系统上完成并已解决的题目集合...
hdu2101AC代码
【标题】"hdu.rar_HDU 1089.cpp_OJ题求和_hdu_horsekw5_杭电obj" 提供的信息是关于一个压缩文件,其中包含了一个名为 "HDU 1089.cpp" 的源代码文件,这个文件是为了解决杭州电子科技大学(Hangzhou Dianzi ...
【标题】:杭电ACMhdu1163 【描述】:这是一道源自杭州电子科技大学(Hangzhou Dianzi University,简称HDU)的ACM编程竞赛题目,编号为1163。这类问题通常需要参赛者利用计算机编程解决数学、逻辑或算法上的挑战,...
hdu 5007 Post Robot 字符串枚举。 暴力一下就可以了。
hdu 1166线段树代码
根据提供的信息,我们可以总结出以下关于“hdu动态规划算法集锦”的知识点: ### 动态规划基础概念 动态规划是一种解决多阶段决策问题的方法,它通过将原问题分解为互相重叠的子问题,利用子问题的解来构建原问题...
HDU是杭州电子科技大学(Hangzhou Dianzi University)举办的一个在线编程竞赛平台,全称为HDU Online Judge。ACM是国际大学生程序设计竞赛(International Collegiate Programming Contest)的缩写,是一个全球性的...
【ACM入门与提高:HDU ACM竞赛课程详解】 ACM(国际大学生程序设计竞赛,International Collegiate Programming Contest,简称ICPC或ACM/ICPC)是一项全球性的竞赛,旨在激发大学生对计算机科学的兴趣,提升他们的...
Hdu 1237 解题代码