codeforces day 4

problem tags:greedy,brute force

题目:

C. Boats Competition

time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

There are 𝑛n people who want to participate in a boat competition. The weight of the 𝑖i-th participant is 𝑤𝑖wi. Only teams consisting of twopeople can participate in this competition. As an organizer, you think that it's fair to allow only teams with the same total weight.

So, if there are 𝑘k teams (𝑎1,𝑏1)(a1,b1), (𝑎2,𝑏2)(a2,b2), ……, (𝑎𝑘,𝑏𝑘)(ak,bk), where 𝑎𝑖ai is the weight of the first participant of the 𝑖i-th team and 𝑏𝑖bi is the weight of the second participant of the 𝑖i-th team, then the condition 𝑎1+𝑏1=𝑎2+𝑏2=⋯=𝑎𝑘+𝑏𝑘=𝑠a1+b1=a2+b2=⋯=ak+bk=s, where 𝑠s is the total weight of each team, should be satisfied.

Your task is to choose such 𝑠s that the number of teams people can create is the maximum possible. Note that each participant can be in no more than one team.

You have to answer 𝑡t independent test cases.

Input

The first line of the input contains one integer 𝑡t (1≤𝑡≤10001≤t≤1000) — the number of test cases. Then 𝑡t test cases follow.

The first line of the test case contains one integer 𝑛n (1≤𝑛≤501≤n≤50) — the number of participants. The second line of the test case contains 𝑛n integers 𝑤1,𝑤2,…,𝑤𝑛w1,w2,…,wn (1≤𝑤𝑖≤𝑛1≤wi≤n), where 𝑤𝑖wi is the weight of the 𝑖i-th participant.

Output

For each test case, print one integer 𝑘k: the maximum number of teams people can compose with the total weight 𝑠s, if you choose 𝑠soptimally.

解析:题意n个人,n个体重,两个一组,每组的体重都要一样,问这n个人最多能够有多少个组,因为数据很小直接暴力就完事

#include <iostream>
using   namespace std;
int w[52],a[52];
int main(int argc, const char * argv[]) {
    // insert code here...、
    int t;
    cin>>t;
    while (t--)//题意n个人,n个体重,两个一组,每组的体重都要一样,问这n个人最多能够有多少个组
    {
        int n,Max=0;
        cin>>n;
        for (int i=1; i<=n; i++) {
            cin>>w[i];
        }
        for (int k=2; k<=100; k++)
        {
            memset(a, 0, sizeof a);//将数组a全部初始化成0,
 
            int num=0;
            for (int i=1; i<=n; i++)
            {
                for (int j=1; j<=n; j++)
                {
                    if (j!=i&&k==w[j]+w[i]&&!a[j]&&!a[i])
                    {
                        a[j]=1;
                        a[i]=1;
                        num++;
                    }
                }
            }
            if (num>Max)
            {
                Max=num;
            }
        }
        cout<<Max<<endl;
    }
    return 0;
}

内容概要:本文详细探讨了基于樽海鞘算法(SSA)优化的极限学习机(ELM)在回归预测任务中的应用,并与传统的BP神经网络、广义回归神经网络(GRNN)以及未优化的ELM进行了性能对比。首先介绍了ELM的基本原理,即通过随机生成输入层与隐藏层之间的连接权重及阈值,仅需计算输出权重即可快速完成训练。接着阐述了SSA的工作机制,利用樽海鞘群体觅食行为优化ELM的输入权重和隐藏层阈值,从而提高模型性能。随后分别给出了BP、GRNN、ELM和SSA-ELM的具体实现代码,并通过波士顿房价数据集和其他工业数据集验证了各模型的表现。结果显示,SSA-ELM在预测精度方面显著优于其他三种方法,尽管其训练时间较长,但在实际应用中仍具有明显优势。 适合人群:对机器学习尤其是回归预测感兴趣的科研人员和技术开发者,特别是那些希望深入了解ELM及其优化方法的人。 使用场景及目标:适用于需要高效、高精度回归预测的应用场景,如金融建模、工业数据分析等。主要目标是提供一种更为有效的回归预测解决方案,尤其是在处理大规模数据集时能够保持较高的预测精度。 其他说明:文中提供了详细的代码示例和性能对比图表,帮助读者更好地理解和复现实验结果。同时提醒使用者注意SSA参数的选择对模型性能的影响,建议进行参数敏感性分析以获得最佳效果。
### Codeforces Div4 比赛难度等级 Codeforces的比赛通常按照不同的分组来划分参赛者,而Div.4是专门为较低评级的选手设计的比赛。这类比赛允许rating在1400或更低的参与者加入[^1]。 对于题目难度分布,在一场典型的Codeforces比赛中,会有一系列按字母顺序排列的任务,从最简单的A类问题到更复杂的后续任务(如B、C等)。每道题目的预期解决难度随着字母表位置增加而上升。然而具体针对Div.4赛事而言: - **简单入门级挑战**:像A和B这样的早期问题是相对容易处理的,旨在测试基本概念理解和编程技能的基础应用。 - **中级复杂度**:接下来的问题比如C和D则需要更多的算法知识以及解决问题的能力,尽管仍然保持在一个较为基础的水平上以便适合新接触竞赛编程的人群参与进来并获得成长的机会。 - **高级但可控**:最后几道题E及以上可能会涉及到更加深入的数据结构或是优化技巧等内容;不过即便如此,在Div.4里这些难题也会被调整得让目标群体能够触及,鼓励大家不断进步的同时不至于感到过分挫败。 值得注意的是,虽然上述描述提供了一个大致框架用于理解Div.4比赛内各层次试题的大致定位,但是每次具体的赛事设置仍取决于命题团队的选择,并且实际难易程度也可能因个人背景差异有所不同。 ```python # 示例代码展示如何判断一个问题属于哪个难度范围 def determine_problem_difficulty(rating): if rating <= 800: return "Very Easy" elif 800 < rating <= 1200: return "Easy" elif 1200 < rating <= 1600: return "Medium" elif 1600 < rating <= 2000: return "Hard" else: return "Very Hard" print(determine_problem_difficulty(750)) # 输出 Very Easy ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值