SDJZU-FatMouse' Trade
发布日期:2022-02-02 02:58:16 浏览次数:12 分类:技术文章

本文共 1803 字,大约阅读时间需要 6 分钟。

题目描述

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]* a% pounds of cat food. Here a is a real number. Now he is assigning this homework to you: tell him the maximum amount of JavaBeans he can obtain. 


输入格式

The input consists of multiple test cases. Each test case begins with a line containing two non-negative integers M and N. Then N lines follow, each contains two non-negative integers J[i] and F[i] respectively. The last test case is followed by two -1's. All integers are not greater than 1000.


输出

For each test case, print in a single line a real number accurate up to 3 decimal places, which is the maximum amount of JavaBeans that FatMouse can obtain.


样例输入

4 2
4 7
1 3
5 5
4 8
3 8
1 2
2 5
2 4
-1 -1

样例输出

2.286
2.500

分析:

#include 
#include
#include
using namespace std;struct cat{ double food; double java; double avg;};bool cmp(cat a,cat b){ return a.avg>b.avg;}int main(){ int n,m,i; struct cat ti[1005]; while (cin>>m>>n) { if(m==-1&&n==-1)break; for(i=0; i
>ti[i].java>>ti[i].food; ti[i].avg=ti[i].java/ti[i].food; } sort(ti,ti+n,cmp); double count=0; double total=m; for(i=0; i
=0)//如果全部能装下 { count+=ti[i].java; total-=ti[i].food; } else { count+=total*ti[i].avg; break; } } cout<
<
<
<

转载地址:https://blog.csdn.net/u010368749/article/details/9632505 如侵犯您的版权,请留言回复原文章的地址,我们会给您删除此文章,给您带来不便请您谅解!

上一篇:SDJZUOJ-看电视
下一篇:hdu-Hero

发表评论

最新留言

路过,博主的博客真漂亮。。
[***.116.15.85]2024年03月30日 12时59分43秒