FatMouse' Trade
FatMouse prepared M pounds of cat food, ready to trade with the cats guarding the warehouse containing his favorite food, JavaBean.
The warehouse has N rooms. The i-th room contains J
i
pounds of JavaBeans and requires F
i
pounds of cat food. FatMouse does not have to trade for all the JavaBeans in the room, instead, he may get J
i
* a% pounds of JavaBeans if he pays F
i
5 3 7 2 4 3 5 2 20 3 25 18 24 15 15 10 -1 -1
13.333 31.500
下面附上代码:
#include<cstdio>
#include<algorithm>
using namespace std;
struct my
{
double a,b,c;
}mp[1000];
bool cmp(my x,my y)
{
return x.c>y.c;
}
int main()
{
int n,m;
while(~scanf("%d%d",&m,&n) && (m!=-1 || n!=-1))
{
double sum=0;
for(int i=0;i<n;i++)
{
scanf("%lf%lf",&mp[i].a,&mp[i].b);
mp[i].c=mp[i].a/mp[i].b;
}
sort(mp,mp+n,cmp);
for(int i=0;i<n;i++)
{
if(m>mp[i].b)
{
sum+=mp[i].a;
m-=mp[i].b;
}
else
{
sum+=mp[i].c*m;
break;
}
}
printf("%.3f\n",sum);
}
return 0;
}
//第一次测试 超时 ,,很尴尬,算法是没有问题的,后来才知道是因为数组开小了
//做此记录,数组尽量开大,否则很无奈