笔试题------查找积分对

这篇博客分享了一道华为笔试题的解题思路,主要涉及整除、倍数和余数的概念。通过将问题转化为寻找配对余数,作者利用C++编写了代码,对输入的分数数组进行排序、计算余数,并检查是否存在能够配对的余数以达到历史平均得分。在检查过程中,确保了余数个数相等且能形成配对。最终,给出了符合条件的分数输出。
摘要由CSDN通过智能技术生成

有关整除,倍数等问题可以试试转化成余数来做。

这是一道华为的笔试题。

 

 

本答案仅供参考。

#include<bits/stdc++.h>
using namespace std;
// 计算余数数组,如果配对能成,则两数余数相加一定等于average或0

int main(){
    int average, N; // 历史平均得分和人数
    cin>>average>>N;
    N = N * 2;
    // cout<<"average: "<<average<<" 2*N: "<<N<<endl;

    // 初始化分数数组
    vector<int> scores;
    for(int i = 0; i < N; ++i){
        int t;
        cin>>t;
        scores.push_back(t);
    }
    sort(scores.begin(), scores.end());
    reverse(scores.begin(), scores.end());

    // for(auto &s : scores) cout<<s<<endl;

    vector<pair<int, int>> temp; // 储存索引对,余数和索引
    unordered_map<int, int> map; // 储存余数和余数个数
    for(int i = 0; i < N; ++i){
        int t;
        // cout<<scores[i];
        if(scores[i] < 0) t = scores[i] % average + average;
        else t = scores[i] % average;
        temp.push_back(make_pair(t, i));
        map[t]++;
    }
    
    // for(auto &m : map){
    //     cout<<m.first<<" "<<m.second<<endl;
    // }

    // 判断某个余数是否有配对余数,且配对余数个数相同
    for(auto &m : map){
        if(m.first == 0){
            if(m.second % 2 == 0) continue; 
            else{
                // cout<<"余数为0个数非偶数"<<endl;
                return 0;
            } 
        } 
        else{
            auto iter = map.find(average - m.first); // 相加等于5则有机会配对
            if(iter == map.end()){ // 没有能配成5的余数
                // cout<<"没有能配成average的余数"<<endl;
                cout<<0<<endl;
                return 0;
            }else if(m.second != iter->second){ // 有能配成5的余数,但数目不同
                // cout<<"余数个数不相等"<<endl;
                cout<<0<<endl;
                return 0;
            }
        }
    }

    vector<int> ans; // 结果数组
    // 选择之后的索引变-1
    for(auto &t : temp){
        if(t.second == -1) continue;
        ans.push_back(scores[t.second]);
        // cout<<"t.first: "<<t.first;
        t.second = -1;
        for(auto &tt : temp){
            if(tt.second == -1) continue;
            else if(t.first + tt.first == average || t.first + tt.first == 0){ //   
                ans.push_back(scores[tt.second]);
                // cout<<" tt.first: "<<tt.first<<endl;
                tt.second = -1;
                break;
            }
        }
    }

    for(auto &a : ans){
        cout<<a<<endl;
    }
    return 0;
        
}
	
    
    

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值