zoukankan      html  css  js  c++  java
  • A1070. Mooncake

    Mooncake is a Chinese bakery product traditionally eaten during the Mid-Autumn Festival. Many types of fillings and crusts can be found in traditional mooncakes according to the region's culture. Now given the inventory amounts and the prices of all kinds of the mooncakes, together with the maximum total demand of the market, you are supposed to tell the maximum profit that can be made.

    Note: partial inventory storage can be taken. The sample shows the following situation: given three kinds of mooncakes with inventory amounts being 180, 150, and 100 thousand tons, and the prices being 7.5, 7.2, and 4.5 billion yuans. If the market demand can be at most 200 thousand tons, the best we can do is to sell 150 thousand tons of the second kind of mooncake, and 50 thousand tons of the third kind. Hence the total profit is 7.2 + 4.5/2 = 9.45 (billion yuans).

    Input Specification:

    Each input file contains one test case. For each case, the first line contains 2 positive integers N (<=1000), the number of different kinds of mooncakes, and D (<=500 thousand tons), the maximum total demand of the market. Then the second line gives the positive inventory amounts (in thousand tons), and the third line gives the positive prices (in billion yuans) of N kinds of mooncakes. All the numbers in a line are separated by a space.

    Output Specification:

    For each test case, print the maximum profit (in billion yuans) in one line, accurate up to 2 decimal places.

    Sample Input:

    3 200
    180 150 100
    7.5 7.2 4.5
    

    Sample Output:

    9.45

     1 #include<cstdio>
     2 #include<iostream>
     3 #include<algorithm>
     4 using namespace std;
     5 typedef struct{
     6     double amount;
     7     double price;
     8     double per;
     9 }info;
    10 bool cmp(info a, info b){
    11     return a.per > b.per;
    12 }
    13 info cake[1001];
    14 int main(){
    15     int N;
    16     double D;
    17     scanf("%d%lf", &N, &D);
    18     double ans = 0;
    19     for(int i = 0; i < N; i++)
    20         scanf("%lf", &cake[i].amount);
    21     for(int i = 0; i < N; i++){
    22         scanf("%lf", &cake[i].price);
    23         cake[i].per = cake[i].price / cake[i].amount;
    24     }
    25     sort(cake, cake + N, cmp);
    26     for(int i = 0; i < N; i++){
    27         if(D >= cake[i].amount){
    28             ans += cake[i].price;
    29             D = D - cake[i].amount;
    30         }else{
    31             ans += D * cake[i].per;
    32             break;
    33         }
    34     }
    35     printf("%.2f", ans);
    36     cin >> N;
    37     return 0;
    38 }
    View Code

    总结:1、贪心策略即可。但有一点,为了稳妥最好把月饼库存、需求、价格等全部用double。之前用int 存储库存,发现有一个测试点怎么都过不去。

  • 相关阅读:
    带横线圆圈标题
    锚点点击导航 跳转到相应位置,样式随之变化
    导航随滚动改变样式
    for循环中嵌套函数,执行顺序和结果该如何理解?
    mui 记录
    获取页面所有a标签href
    cookie记录横向滚动条位置
    Istio全景监控与拓扑
    Istio 流量治理功能原理与实战
    Cloud Native Weekly | KubeCon首登中国,华为云亮相KubeCon 2018,微软云服务又罢工
  • 原文地址:https://www.cnblogs.com/zhuqiwei-blog/p/8496671.html
Copyright © 2011-2022 走看看