Greatest Number

来源:互联网 发布:单片机plc哪个好学 编辑:程序博客网 时间:2024/04/30 08:43

Greatest Number

Time Limit: 1000MS Memory limit: 65536K

题目描述

Saya likes math, because she think math can make her cleverer.
One day, Kudo invited a very simple game:
Given N integers, then the players choose no more than four integers from them (can be repeated) and add them together. Finally, the one whose sum is the largest wins the game. It seems very simple, but there is one more condition: the sum shouldn’t larger than a number M.
Saya is very interest in this game. She says that since the number of integers is finite, we can enumerate all the selecting and find the largest sum. Saya calls the largest sum Greatest Number (GN). After reflecting for a while, Saya declares that she found the GN and shows her answer.
Kudo wants to know whether Saya’s answer is the best, so she comes to you for help.
Can you help her to compute the GN?

输入

The input consists of several test cases.
The first line of input in each test case contains two integers N (0<N≤1000) and M(0
 1000000000), which represent the number of integers and the upper bound.
Each of the next N lines contains the integers. (Not larger than 1000000000)
The last case is followed by a line containing two zeros.

输出

For each case, print the case number (1, 2 …) and the GN.
Your output format should imitate the sample output. Print a blank line after each test case.

示例输入

2 1010020 0

示例输出

Case 1: 8

提示

 给出n个数,从中找到4个或4个以内的数相加的和接近m(可以重复)
定义两个相同的数组,第一部分 a[0] = 0 ; 第二部分n个数,第三部分n个数任意两个相加的和,然后遍历其中一个,用二分的办法从第二个中找出和最接近m的 (保留和),最后得到最大的和

来源

 2010年山东省第一届ACM大学生程序设计竞赛

示例程序
[cpp] view plaincopy在CODE上查看代码片派生到我的代码片
  1. #include <stdio.h>  
  2. #include <string.h>  
  3. #include <algorithm>  
  4. using namespace std;  
  5. int a[2000001];  
  6. int cmp(int x, int y)  
  7. {  
  8.     return x < y;  
  9. }  
  10. int main()  
  11. {  
  12.     int n, m, i, j, mid, l, h, k, max1, x, num=0, g, r, z;  
  13.     while(scanf("%d%d",&n,&m)!=EOF&&n)  
  14.     {  
  15.         k=0;  
  16.         num++;  
  17.         a[0]=0;  
  18.         for(i=1; i<=n; i++)  
  19.         {  
  20.             scanf("%d",&a[i]);  
  21.             {  
  22.                 if(a[i]>m)  
  23.                 {  
  24.                     i--;  
  25.                     n--;  
  26.                 }  
  27.             }  
  28.         }  
  29.         k=n+1;  
  30.         for(i=1; i<=n; i++)  
  31.         {  
  32.             for(j=i; j<=n; j++)  
  33.             {  
  34.                 if(a[i]+a[j]<=m)  
  35.                 {  
  36.                     a[k++]=a[i]+a[j];  
  37.                 }  
  38.             }  
  39.         }  
  40.         sort(a,a+k,cmp);  
  41.         r=k-1;  
  42.         g=k-1;  
  43.         max1=0;  
  44.         for(i=0; i<k; i++)  
  45.         {  
  46.             z=0;  
  47.             l=i;  
  48.             while(l<=r)  
  49.             {  
  50.                 mid=(l+r)/2;  
  51.                 x=a[i]+a[mid];  
  52.                 if(x>m)  
  53.                     r=mid-1;  
  54.                 else if(x==m)  
  55.                 {  
  56.                     max1=m;  
  57.                     z=1;  
  58.                     break;  
  59.                 }  
  60.                 else  
  61.                 {  
  62.                     l=mid+1;  
  63.                     if(max1<x)  
  64.                     {  
  65.                         g=mid;  
  66.                         max1=x;  
  67.                     }  
  68.                 }  
  69.             }  
  70.             if(z)  
  71.                 break;  
  72.             r=g;  
  73.         }  
  74.         printf("Case %d: %d\n\n",num, max1);  
  75.     }  
  76.     return 0;  
  77. }  

0 0