H.答疑(C/C++)贪心

贪心策略:让总时间花费最小的先问
#include
#define llu unsigned long long
using namespace std;

struct node{
int a;
int s;
int e;
};
bool cmp(node x,node y)
{
return (x.a+x.s+x.e) < (y.a+y.s+y.e); } llu t=0,ans=0; int main(){ int n; cin >> n;
node s[n+10];
for(int i=0;i> s[i].a >> s[i].s >> s[i].e ;
}
sort(s,s+n,cmp);
for(int i=0;i

H.答疑(C/C++)贪心最先出现在Python成神之路

版权声明:
作者:congcong
链接:https://www.techfm.club/p/27349.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>