POJ 2366 Sacrament of the sum

Description

— The Brother of mine, the Head of Monastic Order wants to know tomorrow about the results long-term researches. He wants to see neither more nor less than the Summering Machine! Even moreover, he wants our Machine — only a machine — to demonstrate its comprehension of the Sacrament of the Sum as deeply as it is possible. He wants our Machine to find two numbers that give the sum equal to the Sacred Number 10 000. 
— Tsh-sh-sh! This is madness that borders on blasphemy! How can the Machine calculate the Sacred Number? Twenty seven years we work on it, but we've could teach it to tell if the sum of two introduced numbers greater or lower than 10 000. Can an ordinary mortal find two numbers that there sum will be equal to 10 000? 
— But we'll have to do it with the help of our Machine, even if it is not capable. Otherwise we'll have... let's say, big problems, if it is possible to call boiling oil like this. However, I have an idea. Do you remember, last week we've entered two numbers -7 and 13 into the Machine, and it answered that their sum is lower than 10 000. I don't know how to check this, but nothing's left for us than to believe to the fruit of our work. Let's enter now a greater number than -7 and start up the Machine again. We'll do like this again and again until we find a number that being added to 13 will give us 10 000. The only thing we are to do is to prepare an ascending list of numbers. 
— I don't believe in this... Let's start with the sum that is obviously greater than the Sacred Number and we'll decrease one of the summand. So we have more chances to avoid boilin... big problems. 

Haven't come to an agreement, the Brothers went away to their cells. By next day everyone of them has prepared a list of numbers that, to his opinion, could save them... Can both of the lists save them together? 
Your program should decide, if it is possible to choose from two lists of integers such two numbers that their sum would be equal to 10 000.

Input

You are given both of these lists one by one. Format of each of these lists is as follows: in the first line of the list the quantity of numbers Ni of the i-th list is written. Further there is an i-th list of numbers each number in its line (Ni lines).The following conditions are satisfied: 1 <= Ni <= 50 000, each element of the lists lays in the range from -32768 to 32767. The first list is ascending and the second one is descending.

Output

You should write "YES" to the standard output if it is possible to choose from the two lists of integers such two numbers that their sum would be equal to 10 000. Otherwise you should write "NO".

Sample Input

4
-175
19
19
10424
3
8951
-424
-788

Sample Output

YES

Hint

This problem has huge input data,use scanf() instead of cin to read data to avoid time limit exceed. 
 

题意:给出N个递增的数ai,M个递减的数bi.求是否存在一对ai,bj使得ai+bj=10000.

分析:N<=50000,暴力一定超时.

看到a,b数列均单调,可以在这里入手.

初始数组a[], b[]的下标 i=0, j=0.

若ai+bj > 10000,那么肯定bj+ai'(i'>i)都不等于10000,因为ai递增.所以j=j+1.

同理,若ai+bj<10000, i=i+1.

 
 1 #include<stdio.h>
 2 #include<string.h>
 3 #define maxn 50000
 4 
 5 int main()
 6 {
 7     int n, m, a[maxn], b[maxn];
 8     scanf("%d", &n);
 9     for(int i = 0; i < n; i++)
10         scanf("%d", &a[i]);
11     scanf("%d", &m);
12     for(int i = 0; i < m; i++)
13         scanf("%d", &b[i]);
14     int flag = 0;
15     for(int i = 0, j = 0; i <= n && j <= m; )
16         if(a[i] + b[j] == 10000){
17             flag = 1; break;
18         }
19         else if(a[i] + b[j] > 10000)
20             j++;
21         else if(a[i] + b[j] < 10000)
22             i++;
23     if(flag)
24         printf("YES
");
25     else
26         printf("NO
");
27 }
 
原文地址:https://www.cnblogs.com/zzy9669/p/3880031.html