当前位置:   article > 正文

吃苹果(贪心&思维)---2023年天梯赛(GPLT)上海理工大学校内选拔赛-B_团队程序设计天梯赛吃苹果c++

团队程序设计天梯赛吃苹果c++

在这里插入图片描述

解析

对于一个苹果,如果其早上吃贡献大,则其放到早上;同理,其余放到晚上。

对于中间不平衡的进行排序,按照其早上晚上贡献之差

#include<bits/stdc++.h>
using namespace std;
#define int long long
#define endl '\n'
#define inf 0x3f3f3f3f
const int mod=1e9+7;
const int N=2e5+5;
int n,k;
struct node{
	int x,y;
	bool operator<(const node& t)const{
		return x-y>t.x-t.y;
	}
}a[N];
void solve(){
	cin>>n>>k;
	for(int i=1;i<=n;i++){
		cin>>a[i].x>>a[i].y;
	}
	sort(a+1,a+n+1);
	int ans=0;
	for(int i=1;i<=n;i++){
		if(i<=n-k) ans+=a[i].x;
		else ans+=a[i].y;
	}
	cout<<ans<<endl;
}
signed main(){
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	cout.tie(nullptr);
	int tt=1;
//	cin>>tt;
	while(tt--) solve();
	return 0;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/796491
推荐阅读
相关标签
  

闽ICP备14008679号