焚魂 @ 2019-07-04 16:05:55
这道题我的思路就是: 将high(苹果高度)和power(摘苹果所需力气)用结构体储存后按照power大小按照从小到大的顺序排序,再用陶陶剩余力气去挨个减power,每减一次ans(定义一下,为0)就加1,最后输出ans就好了。 代码如下:
#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
struct node{
int high;
int power;
}a[10000];
int main()
{
//freopen("in.txt","r",stdin);
//freopen("out.txt","w",stdout);
int n,m,ans=0,b,k;
cin>>n>>m;
cin>>b>>k;
for(int i=0;i<n;i++)
{
cin>>a[i].high>>a[i].power;
}
for(int i=n-1;i>=1;i--)
for(int j=0;j<i;j++)
{
if(a[j].power>a[j+1].power)
swap(a[j],a[j+1]);
}
for(int i=0;i<n;i++)
{
if(m>=a[i].power&&a[i].high<=b+k)
{
m-=a[i].power;
ans++;
}
else if(m<a[i].power)
break;
}
cout<<ans;
//fclose(stdin);
//fclose(stdout);
}
那个freopen是我为了测试方便设的操作文件结构。
by Retired_lvmao @ 2019-07-04 16:08:35
你发题解啊!
你发讨论干嘛??
by Victorique_De_Blois @ 2019-07-04 16:13:27
所以呢?
by 逆时针的记忆 @ 2019-07-04 16:24:50
~~你的审核通过
by vys_zzh @ 2019-07-04 16:50:07
举报成功,感谢您的反馈