HDU - 2018杭电ACM集训队单人排位赛 - 2 - Problem C. Team Match

在线体验各类最新模型,更有模型 免费Token 额度领取!
立即体验
简介: HDU - 2018杭电ACM集训队单人排位赛 - 2 - Problem C. Team Match

Problem C Team Match

Time Limit: 2000/1500 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)

Total Submission(s): 160    Accepted Submission(s): 55

Problem Description

The programming competition not only depends on the programmers, but also directed by the coaches. Mr Z is a coach who direct n players to take part in the Guangxi Province Collegiate Programming Contest. We assume that a team is consisted of 3 players whose ability is x, y, z respectively and x >= y >= z. Then the team’s total ability is 3 * x + 2 * y + 1 * z; And for a team, if its ability is not lower than the gold medal level m, the team will certainly win the gold medal. Mr Z would like to match teams to gain as many gold medals as possible, could you tell him how many gold medals it is?

Input

The first line is an integer T which indicates the case number.

And as for each case,  there will be 2 lines.

In the first line, there are 2 integers n m, which indicate the number of players, the gold medal level respectively. Please remember n is always the multiple of 3.

In the second line, there are n integers which represents everyone’s ability.

It is guaranteed that——

T is about 100.

for 100% cases, 1 <= n <= 15, 1 <= m <= 30, 1 <= a[i] <= 20.

Output

As for each case, you need to output a single line.

There should be an integer in the line which means the gold medal teams Mr Z could match.

Sample Input

2

6 18

3 3 3 4 2 2

6 7

1 1 1 1 1 1

Sample Output

2

0


解题思路:从小到大排序后,每次选择一个最小,一个最大,然后中间 a[i](i 从小到大)循环寻找合适的中间数。在还没整个数组统计完时,如果当中有一次 return false,那么就肯定有一对已经没法执行,那么选择最小的尽量靠前的3个淘汰掉,再整个重来。


AC 代码


/

#include<bits/stdc++.h>
#include<cmath>
#define mem(a,b) memset(a,b,sizeof a);
#define INF 0x3f3f3f3f
using namespace std;
typedef long long ll;
int n,m,a[20];
bool solve(int x)
{
    int l=(n/3-x)*3+1, r=n, vis[20];
    mem(vis,0);
    while(l<r)
    {
        int flag=0;
        for(int i=l+1;i<r;i++)
        {
            if(!vis[i] && 3*a[r]+2*a[i]+a[l]>=m)
            {
                flag=1;
                vis[i]=1;
                break;
            }
        }
        if(!flag) return false;
        vis[l]=vis[r]=1;
        while(vis[l]) l++;
        while(vis[r]) r--;
    }
    return true;
}
int main()
{
    int T; scanf("%d",&T);
    while(T-- && ~scanf("%d%d",&n,&m))
    {
        for(int i=1;i<=n;i++) scanf("%d",&a[i]);
        sort(a+1,a+1+n);
        int ans=n/3;
        while(ans)
        {
            if(solve(ans)) break;
            else ans--;
        }
        printf("%d\n",ans);
    }
    return 0;
}
目录
相关文章
|
弹性计算 Linux 云计算
阿里云学习体验
对阿里云服务器的学习,了解。
2018ICPC青岛站 D . Magic Multiplication(构造 模拟)
2018ICPC青岛站 D . Magic Multiplication(构造 模拟)
193 0
|
人工智能 Java
HDU - 2018杭电ACM集训队单人排位赛 - 3 - Problem E. Sequence
HDU - 2018杭电ACM集训队单人排位赛 - 3 - Problem E. Sequence
250 0
|
机器学习/深度学习 算法 Java
HDU - 2018杭电ACM集训队单人排位赛 - 3 - Problem B. Bullet
HDU - 2018杭电ACM集训队单人排位赛 - 3 - Problem B. Bullet
345 0
|
人工智能 Java
HDU - 2018杭电ACM集训队单人排位赛 - 4 - Problem C. Sequence
HDU - 2018杭电ACM集训队单人排位赛 - 4 - Problem C. Sequence
204 0
|
5天前
|
缓存 人工智能 安全
GPT-5.6 Terra与GPT-5.5性能实测:成本减半后的跑分对比与快速迁移指南
GPT-5.6 Terra 的定价为每百万 token 输入 2.50/输出 15。GPT-5.5 则是 5/ 30。Terra 的每一项费率,包括 $0.25/M 的缓存读取,都恰好是 GPT-5.5 的一半,因此在任何工作负载组合下,Terra 都固定 便宜 2.0x。以每天 10 万次请求、3K token 提示词计算,大约是 Terra 每天 2,000,GPT−5.5每天 4,000,即每月约 60,000对 120,000。问题在于:OpenAI 没有发布任何针对 Terra 的编码基准。那个著名的 91.9% Terminal-Bench 数字是 Sol 在 Ul
|
12天前
|
存储 关系型数据库 MySQL
云数据库自研存储引擎:阿里云 PolarDB 相比开源 MySQL 性能提升数倍
云数据库自研存储引擎已成为云原生数据库竞争的核心技术高地。阿里云 PolarDB 通过 X-Engine 高压缩存储、PolarStore 用户态 IO + RDMA、IMCI 列存 HTAP 三大自研引擎组合,配合物理日志、跨节点 Buffer Pool 共享、Parallel Query 五大优化,实现写性能 6 倍、压缩 3-5 倍、AP 加速 100 倍、IO 延迟 -80% 的全面超越,让客户存储成本下降 65%、DBA 人力节省 80%。
453 114