首页 > 代码库 > 贪心 No Time for Dragons Gym - 101149B
贪心 No Time for Dragons Gym - 101149B
国王要杀死n条龙,杀死每条龙需要a人,会战死b人,问杀死n条龙至少需要多少人。
因为杀死每条龙需要的人是一定的且战死的人是一定的,所以先杀战死的人最少的龙。
#include<iostream> #include<cstdio> #include<cstring> #include<algorithm> #define maxn 200005 using namespace std; typedef struct { int x,y; }Point; Point a[maxn]; int cmp(Point b,Point c) { return b.y> c.y; } int main() { long long ans=0; int n; cin>>n; for(int i=1;i<=n;i++) { int x1,y1; cin>>x1>>y1; a[i].x=x1,a[i].y=x1-y1; } sort(a+1,a+n+1,cmp); ans+=a[1].x; for(int i=2;i<=n;i++) { if(a[i].x>a[i-1].y) ans+=(a[i].x-a[i-1].y); else a[i].y+=(a[i-1].y-a[i].x); } cout<<ans<<endl; }
贪心 No Time for Dragons Gym - 101149B
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。