欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 财经 > 创投人物 > GESP2024年12月认证C++五级( 第三部分编程题(2))

GESP2024年12月认证C++五级( 第三部分编程题(2))

2025/1/19 6:31:39 来源:https://blog.csdn.net/weixin_60445850/article/details/144677464  浏览:    关键词:GESP2024年12月认证C++五级( 第三部分编程题(2))

参考程序:

#include<bits/stdc++.h>
using namespace std;
#define ll long long
int n, m;
int cnt[1010];
vector<int> cs[1010];
ll calc(int aim) 
{int cur_cnt = cnt[1];ll res = 0;vector<int> tmp;for (int i = 2; i<=n; i++){int buy = max((int)cs[i].size() - aim + 1, 0);for (int j = 0; j < buy; ++j) {res += (ll)cs[i][j];}cur_cnt += buy;for (int j = buy; j < cs[i].size(); ++j) {tmp.push_back(cs[i][j]);}}sort(tmp.begin(), tmp.end());for (int i = 0; i < aim - cur_cnt; i++) {res += (ll)tmp[i];}return res;
}
int main() 
{cin >> n >> m;for (int i = 1; i <=m; i++) {int p, c;cin >> p >> c;cnt[p]++;cs[p].push_back(c);}for (int i = 1; i <=n; i++) {sort(cs[i].begin(), cs[i].end());}ll ans = 1e18;for (int i = max(cnt[1], 1); i <= m; ++i) {ans = min(ans, calc(i));}cout << ans << "\n";
}

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com