zoukankan      html  css  js  c++  java
  • Greatest Number 山东省第一届省赛

    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 10
    100
    2
    
    0 0

    示例输出

    Case 1: 8
    解题:先循环一下,两个两个的相加一下,然后二分查找,时间算好,不会超过1s;
     1 #include<iostream>
     2 #include<algorithm>
     3 #include<cstring>
     4 #include<cstdio>
     5 using namespace std;
     6 const int N = 1e6+1000;
     7 #define LL long long
     8 LL sum[N];
     9 LL a[N];
    10 int search(int l,int r,LL num)
    11 {
    12     int mid;
    13     while(l<r)
    14     {
    15         mid = (l+r)/2;
    16         if(sum[mid]<=num) l = mid+1;
    17         else  r  =  mid;
    18     }
    19     return l-1;
    20 }
    21 int main()
    22 {
    23     int m,k,cnt = 1;
    24     LL x,n;
    25     //freopen("greatest.in","r",stdin);
    26     while(scanf("%d %lld",&m,&n) && m+n)
    27     {
    28         k = 0;
    29         for(int i=1;i<=m;i++)
    30         {
    31             scanf("%lld",&x);
    32             if(x<=n)
    33                 a[k++] = x;
    34         }
    35         a[k]=0;
    36         int kk =0 ;
    37         for(int i=0;i<=k;i++)
    38             for(int j=0;j<=k;j++)
    39            {
    40              if(a[i] + a[j] <=n)
    41                 sum[kk++] = a[i]+a[j];
    42            }
    43         sort(sum,sum+kk);
    44         LL ans = 0;
    45         for(int i=0;i<kk;i++)
    46         {
    47             LL M = n - sum[i];
    48             int x = search(0,kk,M);
    49             ans = max(ans,sum[i]+sum[x]);
    50         }
    51         printf("Case %d: %lld
    
    ",cnt++,ans);
    52     }
    53     return 0;
    54 }
  • 相关阅读:
    Picture
    wolf and rabbit
    十进制转换为二进制(一直不会算的)
    各种排序
    折线分割平面
    字母数
    1001
    Primes
    大数的减法神秘数
    转: Windows Internet WinINet 学习笔记(2)
  • 原文地址:https://www.cnblogs.com/lovychen/p/4462727.html
Copyright © 2011-2022 走看看