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 存储库存,发现有一个测试点怎么都过不去。

  • 相关阅读:
    WIN8开启AHCI的方法终于得到解决。
    Androidx86入门之让你的Androidx86竖屏起来
    Android软件去广告教程
    opencv 3 core组件进阶(2 ROI区域图像叠加&图像混合;分离颜色通道、多通道图像混合;图像对比度,亮度值调整)
    opencv 4 图像处理 (1 线性滤波,非线性滤波)
    opencv 3 core组件进阶(3 离散傅里叶变换;输入输出XML和YAML文件)
    php正则指定字符串内容preg_match函数之说明
    dedecms pagelist标签修改方法
    php后台多用户权限组思路与实现程序代码
    php中获取文件后缀名多种方法
  • 原文地址:https://www.cnblogs.com/zhuqiwei-blog/p/8496671.html
Copyright © 2011-2022 走看看