本文主要是介绍2023-9-25 耍杂技的牛,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
题目链接:耍杂技的牛
#include <iostream>
#include <algorithm>using namespace std;typedef pair<int, int> PII;const int N = 50010;int n;
PII cow[N];int main()
{cin >> n;for(int i = 0; i < n; i ++){int w, s;cin >> w >> s;cow[i] = {w + s, w};}sort(cow, cow + n);// sum: 每头牛上面的重量之和int res = -2e9, sum = 0;for(int i = 0; i < n; i ++){int w = cow[i].second, s = cow[i].first - w;res = max(res, sum - s);sum += w;}cout << res << endl;return 0;
}
这篇关于2023-9-25 耍杂技的牛的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!