Greatest Number 山东省第一届省赛

通过枚举选择和二分查找计算给定整数集合下不超过特定限制的最大和。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

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\n\n",cnt++,ans);
52     }
53     return 0;
54 }

 

转载于:https://www.cnblogs.com/lovychen/p/4462727.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值