码迷,mamicode.com
首页 > 其他好文 > 详细

1020 月饼 (25 分)

时间:2018-12-27 20:23:23      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:return   简单   for   tar   其它   ble   浙大   测试   using   

题目链接:1020 月饼 (25 分)

 

这道题目逻辑方面比较简单,但是浙大的PAT往往考察细节,果不其然,因为变量类型的原因,一个测试点没过。

 

特别注意,题目中说种类数N和需求量D为正整数,其它变量则为正数,所以这里的其它变量类型应当是double型。

 

#include <bits/stdc++.h>
using namespace std;

struct Node
{
    double num;        //注意题目中库存为正数,没有说整数 
    double money;    //注意题目中总价为正数,没有说整数 
    bool operator <(const Node &b)const
    {
        return money/num<b.money/b.num;
    }
}a;
vector<Node> stock;
int main()
{
    int n,d;
    cin>>n>>d;
    double interest=0.0;
    int num;
    for(int i=0;i<n;i++)
    {
        cin>>a.num;
        stock.push_back(a); 
    } 
    for(int i=0;i<n;i++)
        cin>>stock[i].money;
    sort(stock.begin(),stock.begin()+stock.size());
    for(int i=stock.size()-1;i>=0&&d!=0;i--)
    {
        if(stock[i].num>=d)    //该种类月饼的库存大于需求 
        {
            interest+=stock[i].money*d/stock[i].num;
            d=0;
        }
        else    //该种类的库存小于需求 
        {
            interest+=stock[i].money;
            d-=stock[i].num;
        }    
    }
    printf("%.2f\n",interest); 
    return 0;
} 

 

1020 月饼 (25 分)

标签:return   简单   for   tar   其它   ble   浙大   测试   using   

原文地址:https://www.cnblogs.com/ManOK/p/10186864.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!