PAT_A1070#Mooncake

Source:

PAT A1070 Mooncake (25 分)

Description:

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 (≤), the number of different kinds of mooncakes, and D (≤ 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

Keys:

  • 贪心

Code:

 1 /*
 2 Data: 2019-07-22 19:35:47
 3 Problem: PAT_A1070#Mooncake
 4 AC: 13:45
 5 
 6 题目大意:
 7 给出各种月饼的库存和价格,和市场需求总量,求最大利润
 8 输入:
 9 第一行给出,月饼种类N<=1e3,市场需求总量D<=500
10 第二行给出,库存量
11 第三行给出,价格
12 输出:
13 最大利润(两位小数)
14 
15 基本思路:
16 根据贪心算法,总是优先选择单价最高月饼
17 */
18 #include<cstdio>
19 #include<algorithm>
20 using namespace std;
21 const int M=1e3+10;
22 struct node
23 {
24     double ven,prs;
25 }mcake[M];
26 
27 bool cmp(const node &a, const node &b)
28 {
29     return a.prs/a.ven > b.prs/b.ven;
30 }
31 
32 int main()
33 {
34 #ifdef    ONLINE_JUDGE
35 #else
36     freopen("Test.txt", "r", stdin);
37 #endif
38 
39     int n,d;
40     scanf("%d%d", &n,&d);
41     for(int i=0; i<n; i++)
42         scanf("%lf", &mcake[i].ven);
43     for(int i=0; i<n; i++)
44         scanf("%lf", &mcake[i].prs);
45     sort(mcake,mcake+n,cmp);
46     double ans=0;
47     for(int i=0; i<n; i++)
48     {
49         if(d > mcake[i].ven)
50         {
51             ans += mcake[i].prs;
52             d -= mcake[i].ven;
53         }
54         else if(d <= mcake[i].ven)
55         {
56             ans += d*(mcake[i].prs/mcake[i].ven);
57             break;
58         }
59     }
60     printf("%.2f\n", ans);
61 
62 
63     return 0;
64 }

猜你喜欢

转载自www.cnblogs.com/blue-lin/p/11228031.html