题目思路 : 思路很简单,肯定是贪心做法,要使总代价最小,需用那些出现次数比avg多的数来替换那些没有出现或者是出现次数少于avg的数, 所以我们存当前数每次出现的代价是多少 ,枚举每一个 0 - 9 之间的数 ,如果当前数出现的次数多于avg,那么说明需要减少,每次用最小的代价替换即可
由于我们并不知道替换的数是哪一个,但由于题目中说明了每个数都会出现 n / 10 次,所以证明一旦多出来的数必定会替换为另一个数,故我们只需要从小到大替换,将 avg 个当前数中价值最大的保存即可。
cpp#include <iostream> #include <cstring> #include <algorithm> using namespace std; const int N = 1e5 + 10; int n; int a[N] , b[N]; vector<int> h[N]; int main() { cin >> n; for(int i = 1 ; i <= n ; i ++) { int a , b; cin >> a >> b; h[a].push_back(b); } int avg = n / 10; long long res = 0; for(int i = 0 ; i < 10 ; i ++) { int x = h[i].size(); if(x > avg) { sort(h[i].begin() , h[i].end()); for(int j = 0 ; j < h[i].size() - avg ; j ++) { res += h[i][j]; } } } printf("%lld" , res); return 0; }
贪心+蓝桥杯
wyn666662024-01-16 22:06
相关推荐
oier_Asad.Chen19 分钟前
【洛谷题解/AcWing题解/真题】洛谷P2330【SCOI2005】繁忙的都市(Kruskal算法的再探究))AAA@峥9 小时前
K8s 资源混乱怎么办?Namespace 隔离 + 上下文切换实战Tongzhi202619 小时前
从部署到运维:通芝科技无感考勤一体机的全流程效率解析旖旎夜光2 天前
LeetCode 991: 坏了的计算器(贪心算法) —— 题解旖旎夜光2 天前
LeetCode 553:最优除法(贪心算法) —— 题解旖旎夜光2 天前
LeetCode 435:无重叠区间(贪心算法) —— 题解旖旎夜光2 天前
LeetCode 738:单调递增的数字(贪心算法) —— 题解旖旎夜光2 天前
LeetCode 1262:可被三整除的最大和 (贪心算法)—— 题解依然鸣2 天前
蓝桥杯多校模拟赛 题解小星星闪亮登场3 天前
2026萌新联赛第三场-- (郑州轻工业大学)