我是靠谱客的博主 成就柜子,最近开发中收集的这篇文章主要介绍codeforces 1203 F1 Complete the Projects (easy version) 贪心,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

https://codeforces.com/problemset/problem/1203/F1
题目大意:给出 n n n个任务,每个任务有 r a t i n g i rating_{i} ratingi限制和加分 s c o r e i score_{i} scorei( s c o r e i score_{i} scorei可能是个负数),给出你的初始 r a t i n g rating rating,当 r a t i n g > r a t i n g i rating>rating_{i} rating>ratingi时,才能完成第 i i i个任务,完成任务后: r a t i n g = r a t i n g + s c o r e i rating=rating+score_{i} rating=rating+scorei,你可以任意安排完成任务的顺序,且完成任意一个任务后必须满足 r a t i n g > = 0 rating>=0 rating>=0,若能实现输出 Y E S YES YES否则输出 N O NO NO

思路:贪心, s c o r e score score为正的,按照 r a t i n g rating rating从小到大排序, s c o r e score score为负的;在最坏情况下,每个任务完成后的最高分数为: r a t i n g = r a t i n g i + s c o r e i rating=rating_{i}+score_{i} rating=ratingi+scorei,按照这个值从大到小排序。

#include<bits/stdc++.h>
#define INF 0x3f3f3f3f
#define pr pair<int,int>
typedef long long ll;
using namespace std;
int n,tot;
struct node
{
int a,b;
node(){}
node(int aa,int bb)
{
a=aa,b=bb;
}
}a[105],b[105];
bool cmp1(node x,node y)
{
return x.a<y.a;
}
bool cmp2(node x,node y)
{
return (x.a+x.b)>(y.a+y.b);
}
int main()
{
scanf("%d %d",&n,&tot);
int u,v;
int len1=0,len2=0;
for(int i=0;i<n;i++)
{
scanf("%d %d",&u,&v);
if(v>=0)
a[len1++]=node(u,v);
else
b[len2++]=node(u,v);
}
bool flag=1;
sort(a,a+len1,cmp1);
sort(b,b+len2,cmp2);
for(int i=0;i<len1;i++)
{
if(tot>=a[i].a)
tot+=a[i].b;
else
flag=0;
}
for(int i=0;i<len2;i++)
{
if(tot>=b[i].a)
tot+=b[i].b;
else
flag=0;
}
if(tot<0)
flag=0;
printf("%sn",flag?"YES":"NO");
return 0;
}

最后

以上就是成就柜子为你收集整理的codeforces 1203 F1 Complete the Projects (easy version) 贪心的全部内容,希望文章能够帮你解决codeforces 1203 F1 Complete the Projects (easy version) 贪心所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(58)

评论列表共有 0 条评论

立即
投稿
返回
顶部