首页 > 代码库 > oj---九度oj---1433
oj---九度oj---1433
#include<cstdio> #include<algorithm> using namespace std; const double eps=1e-8; bool greater(double x){ if(x>eps) return 1; else return 0; } struct Goods{ double price; double size; double sp; }goods[1005]; bool cmp(Goods a,Goods b){ return a.sp>b.sp; } int main(){ int n,m; while(scanf("%d %d",&m,&n)!=EOF){ if(n==-1&&m==-1) break; for(int i=0;i<n;i++){ scanf("%lf %lf",&goods[i].size,&goods[i].price); goods[i].sp=goods[i].size/goods[i].price; } sort(goods,goods+n,cmp); int i=0; double res=0; double reserve=(double)m; while(greater(reserve)&&i<n){ //i<n,考虑全部买完的情况 if(reserve>goods[i].price){ reserve-=goods[i].price; res+=goods[i].size; i++; } else{ res+=goods[i].sp*reserve; reserve=0; i++; } } printf("%.3f\n",res); } return 0; }
oj---九度oj---1433
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。