0
已采纳
朱宗晔
初级光能
初级光能
注意
int cmp(const candy& a,const candy& b)
{
if(a.td!=b.td) return a.td>b.td;
if(a.tj!=b.tj) return a.tj>b.tj;
return a.td>b.td;
}
核心部分
sort(yes+1,yes+n+1,cmp);
for(int i=1;i<=m;i++)
{
sum+=yes[i].td;
ans+=yes[i].tj;
}
6
0
0