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

  • 相关阅读:
    使用JavaWeb实现文件的上传和下载
    IDEA使用Maven创建Web项目的两种方式
    Window10系统下联想笔记本进入BIOS界面方法
    MarkDown语法
    PV-UV-QPS
    expect 安装 salt 客户端
    fg、bg、jobs、&、nohup、ctrl+z、ctrl+c 命令
    查看CPU 内存 硬盘 网络 查看进程使用的文件 uptime top ps -aux vmstat iostat iotop nload iptraf nethogs
    rpm 命令使用 和 lsof -p 1406 使用
    salt 执行shell 脚本 修改名字
  • 原文地址:https://www.cnblogs.com/zhuqiwei-blog/p/8496671.html
Copyright © 2020-2023  润新知