码迷,mamicode.com
首页 > 其他好文 > 详细

PAT 甲级 A1070 (2019/02/19)

时间:2019-02-24 11:00:22      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:cst   bre   double   lse   cost   std   ace   code   ble   

#include<cstdio>
#include<algorithm>
using namespace std;
struct Mooncake{
    double inventory;   //库存
    double total_value; //总价
    double unit_price;  //单价 
}cake[1001];
bool cmp(Mooncake a, Mooncake b){
    return a.unit_price > b.unit_price;     //按照单价从高到低 
} 
int main(){
    int N, D;
    scanf("%d %d", &N, &D);
    for(int i = 0; i < N; i++){
        scanf("%lf", &cake[i].inventory);
    }
    for(int i = 0; i < N; i++){
        scanf("%lf", &cake[i].total_value);
        cake[i].unit_price = cake[i].total_value / cake[i].inventory;   //计算单价 
    }
    sort(cake, cake + N, cmp);          //排序 
    double total_cost = 0.0;
    for(int i = 0; i < N; i++){
        if(D > cake[i].inventory){      //需求大于库存 
            D -= cake[i].inventory;     //第i种月饼全部卖出 
            total_cost += cake[i].total_value;  //这些月饼的总价算进花费 
        }else{      //需求小于库存 
            total_cost += cake[i].unit_price * D;   //只卖出剩余需求量的月饼 
            break;
        }
    }
    printf("%.2f", total_cost);
    return 0;
}

PAT 甲级 A1070 (2019/02/19)

标签:cst   bre   double   lse   cost   std   ace   code   ble   

原文地址:https://www.cnblogs.com/zjsaipplp/p/10425236.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!