贪心 耍杂技的牛
- 国王游戏同款思路
- 大部分贪心用的都是已经被证明过的知名的数学模型
- 贪心得到的答案 >= 最优解
- 贪心得到答案 <= 最优解
#include<iostream>
#include<algorithm>
using namespace std;
// 给 pair<int, int> 起个别名 PII
typedef pair<int, int> PII;
const int N = 50010;
int n;
PII cow[N];
int main(){
scanf("%d", &n);
for(int i = 0; i < n; i++){
int w, s;
scanf("%d%d", &w, &s);
cow[i] = {w + s, w};
}
// 默认是根据 first 进行排序
sort(cow, cow + n);
/*
二元组 pair
cow.first 可以调用 第一个元素
cow.second 可以调用第二个元素
默认情况下排序时根据第一个元素进行排序
*/
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;
}
printf("%d\n", res);
return 0;
}
标签:PII,游戏,cow,int,res,pair,国王,贪心
From: https://www.cnblogs.com/tomlove/p/17955334