mooncake

编程入门 行业动态 更新时间:2024-10-25 14:24:04

<a href=https://www.elefans.com/category/jswz/34/1701849.html style=mooncake"/>

mooncake

1070. Mooncake (25)

时间限制 100 ms
内存限制 65536 kB
代码长度限制 16000 B
判题程序 Standard 作者 CHEN, Yue

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
#include<iostream>
#include<map>
#include<vector>
#include<algorithm>
using namespace std;	
int main()
{int n,m1;cin>>n>>m1;vector<double> v1,v2;vector<pair<double,double> > vv;for(int i=0;i<n;i++){double temp;cin>>temp;v1.push_back(temp);}for(int i=0;i<n;i++){double temp1;cin>>temp1;v2.push_back(temp1);}for(int i=0;i<n;i++){pair<double,double> m;m.first=v2[i]/v1[i];//pair中第一个是单价,第二个是数量,排序,按照单价从大到小 m.second=v1[i];vv.push_back(m);}sort(vv.begin(),vv.end());double sum=0;for(int i=vv.size()-1;i>=0;i--){if(m1<=vv[i].second){sum+=vv[i].first*m1;break;}else{sum+=vv[i].first*vv[i].second;m1-=vv[i].second;}	}printf("%.2lf",sum);return 0; 
}	


更多推荐

mooncake

本文发布于:2024-02-26 08:22:36,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1701850.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:mooncake

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!