其他分享
首页 > 其他分享> > Epic Transformation(思维 + 优先队列 + 贪心)

Epic Transformation(思维 + 优先队列 + 贪心)

作者:互联网

传送门
题目要求进行最大不同数字匹配数量,那么考虑贪心策略。

#include <bits/stdc++.h>

using namespace std;

const int N = 2e5 +10;
int a[N];
void solve(){
    priority_queue<pair<int, int> >pq;
    map<int, int> mp;
    int n;
    cin >> n;
    for(int i = 1; i <= n; i ++){
        int x;
        cin >> x;
        mp[x] ++;
    }
    for(auto [x, y] : mp){
        pq.push({y, x});
    }
    int size = n;
    while(pq.size() >= 2){
        auto temp1 = pq.top();
        pq.pop();
        auto temp2 = pq.top();
        pq.pop();
        temp1.first --;
        temp2.first --;
        size -= 2;
        if(temp1.first){
            pq.push(temp1);
        }
        if(temp2.first){
            pq.push(temp2);
        }
    }
    cout << size << "\n";
}
int main()
{
    int t;
    cin >> t;
    while(t --){
        solve();
    }
    return 0;
}


标签:size,pq,int,first,temp2,temp1,Epic,Transformation,贪心
来源: https://www.cnblogs.com/pureayu/p/14778892.html