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

  • 相关阅读:
    RAID
    变量的内存位置
    OSI网络结构的七层模型 TCP/IP层次模型
    IT公司【应聘】
    ajax的一个最简单例子
    优先级反转问题
    问一道算法题:算出这些直线一共有多少个交点
    一个女研究生(高级测试工程师)的职业选择 ZZ
    使用SWIG实现C/C++与其他语言间的互相调用 zz
    创建系统级热键 C++ builder为例
  • 原文地址:https://www.cnblogs.com/zhuqiwei-blog/p/8496671.html
Copyright © 2011-2022 走看看