oj---九度oj---1433

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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的主要内容,如果未能解决你的问题,请参考以下文章

九度oj 题目1397:查找数段

九度OJ-题目1009:二叉搜索树

九度OJ平台练习 —— 题目1009

九度oj1002

oj---九度oj---1061

oj---九度oj---1434