当前位置:网站首页>FatMouse' Trade (Hangdian 1009)
FatMouse' Trade (Hangdian 1009)
2022-07-07 20:59:00 【Full stack programmer webmaster】
Hello everyone , I meet you again , I'm the king of the whole stack .
FatMouse’ Trade
Time Limit : 2000/1000ms (Java/Other) Memory Limit : 65536/32768K (Java/Other)
Total Submission(s) : 1 Accepted Submission(s) : 1
Font: Times New Roman | Verdana | Georgia
Font Size: ← →
Problem Description
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.
Input
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.
Output
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.
Sample Input
5 3
7 2
4 3
5 2
20 3
25 18
24 15
15 10
-1 -1
Sample Output
13.333
31.500
// This is a simple greedy problem . It means that rats have m Bang cat food , By giving cat food data[i].b Be able to exchange data[i].a, Ask how much food you can exchange at most .// Just put data[i].a/data[i].b The value of can be sorted from large to small . #include<stdio.h>struct st{ double a; double b; double c;}data[1000];int main(){ int i,j,m,n; struct st data[1000],t; while(scanf("%d %d",&m,&n)&&(m!=-1||n!=-1)) { double sum=0.000; for(i=0;i<n;i++) { scanf("%lf %lf",&data[i].a,&data[i].b); } for(i=0;i<n;i++) { for( j=i+1;j<n;j++) { if((data[i].a/data[i].b)<data[j].a/data[j].b) { t=data[i]; data[i]=data[j]; data[j]=t;} } } for(i=0;i<n;i++) { if(m-data[i].b>=0.001) { sum+=data[i].a; m-=data[i].b; } else { sum=sum+m*data[i].a/data[i].b; break; } } printf("%.3lf\n",sum); } return 0;}
Publisher : Full stack programmer stack length , Reprint please indicate the source :https://javaforall.cn/116298.html Link to the original text :https://javaforall.cn
边栏推荐
- Le capital - investissement est - il légal en Chine? C'est sûr?
- MySQL约束之默认约束default与零填充约束zerofill
- I Basic concepts
- 反诈困境,国有大行如何破局?
- guava多线程,futurecallback线程调用不平均
- Micro service remote debug, nocalhost + rainbow micro service development second bullet
- Cantata9.0 | new features
- margin 等高布局
- Jetty:配置连接器[通俗易懂]
- Apifox 接口一体化管理新神器
猜你喜欢
OneSpin | 解决IC设计中的硬件木马和安全信任问题
Nebula Importer 数据导入实践
【C语言】指针进阶---指针你真的学懂了吗?
SQL注入报错注入函数图文详解
ISO 26262 - 基于需求测试以外的考虑因素
恶魔奶爸 B3 少量泛读,完成两万词汇量+
Helix QAC 2020.2 new static test tool maximizes the coverage of standard compliance
Cantata9.0 | new features
OneSpin 360 DV新版发布,刷新FPGA形式化验证功能体验
95年专注安全这一件事 沃尔沃未来聚焦智能驾驶与电气化领域安全
随机推荐
guava多线程,futurecallback线程调用不平均
Klocwork code static analysis tool
【OpenCV 例程200篇】223. 特征提取之多边形拟合(cv.approxPolyDP)
Implement secondary index with Gaussian redis
机械臂速成小指南(十一):坐标系的标准命名
CodeSonar通过创新型静态分析增强软件可靠性
使用高斯Redis实现二级索引
Cocos2d-x 游戏存档[通俗易懂]
恶魔奶爸 C
Phoenix JDBC
阿洛的烦恼
国家正规的股票交易app有哪些?使用安不安全
部署、收回和删除解决方式—-STSADM和PowerShell「建议收藏」
AADL Inspector 故障树安全分析模块
margin 等高布局
复杂因子计算优化案例:深度不平衡、买卖压力指标、波动率计算
[paper reading] maps: Multi-Agent Reinforcement Learning Based Portfolio Management System
【矩阵乘】【NOI 2012】【cogs963】随机数生成器
HDU4876ZCC loves cards(多校题)
万字总结数据存储,三大知识点