本文主要是介绍Codeforces Round #710 (Div. 3) D. Epic Transformation,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
题解:
存在优先队列里面
#include <bits/stdc++.h>
using namespace std;
int main()
{int t;cin>>t;while(t--){map<long long,int> a;int n;cin>>n;for(int i=0;i<n;i++){long long b;scanf("%lld",&b);a[b]++;}priority_queue<int,vector<int>,less<int>>q;for(auto x:a){q.push(x.second);}while(q.size()>1){int c=q.top();q.pop();int d=q.top();q.pop();c--;d--;if(c) q.push(c);if(d) q.push(d);}if(q.size()) cout<<q.top()<<endl;else cout<<0<<endl;}return 0;
}
这篇关于Codeforces Round #710 (Div. 3) D. Epic Transformation的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!