Description
又是一年秋季时,陶陶家的苹果树结了 n个果子。陶陶又跑去摘苹果,这次他有一个 a 公分的椅子。当他手够不着时,他会站到椅子上再试试。
这次与 NOIp2005 普及组第一题不同的是:陶陶之前搬凳子,力气只剩下 s了。当然,每次摘苹果时都要用一定的力气。陶陶想知道在 s<0 之前最多能摘到多少个苹果。
现在已知 n个苹果到达地上的高度 xi,椅子的高度 a,陶陶手伸直的最大长度 b,陶陶所剩的力气 s,陶陶摘一个苹果需要的力气 yi,求陶陶最多能摘到多少个苹果。
Input
第 1行:两个数 苹果数 n,力气 s。
第 2 行:两个数 椅子的高度 a,陶陶手伸直的最大长度 b。
第 3 行~第 3+n−1 行:每行两个数 苹果高度 xi,摘这个苹果需要的力气 yi。
Output
只有一个整数,表示陶陶最多能摘到的苹果数。
Sample
Inputcopy | Outputcopy |
---|---|
8 15 20 130 120 3 150 2 110 7 180 1 50 8 200 0 140 3 120 2 | 4 |
非常水的一道题,和陶陶摘苹果没什么区别
陶陶摘苹果做完后,再贪心就行了(别问我为什么贪心是对的)
代码奉上
#include<bits/stdc++.h>
using namespace std;
struct Node
{
int x,y;
}f[5001];
Node ans[5001];
int n,s,a,b,h=0,bb=0;
bool cmp(Node a,Node b)
{
return a.y<b.y;
}
int main()
{
cin>>n>>s>>a>>b;
for(int i=1;i<=n;i++)
cin>>f[i].x>>f[i].y;
for(int i=1;i<=n;i++)
if(a+b>=ns[i].x)
{
h++;
ans[h].x=f[i].x,ans[h].y=f[i].y;
}
sort(ans+1,ans+1+h,cmp);//排序后才能贪心
for(int i=1;i<=h;i++)
if(s-ans[i].y>=0)
{
bb++;
s-=ans[i].y;
}
cout<<bb;
return 0;//功德圆满
}