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

PAT (Advanced Level) 1070. Mooncake (25)

时间:2016-07-01 20:03:43      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:

简单贪心。先买性价比高的。

#include<cstdio>
#include<cstring>
#include<cmath>
#include<vector>
#include<map>
#include<stack>
#include<queue>
#include<string>
#include<algorithm>
using namespace std;

double eps=1e-7;
const int maxn=1000+10;
int n;
struct X
{
    double x;
    double y;
}s[maxn];
double money;

bool cmp(const X&a,const X&b)
{
    return a.y/a.x>b.y/b.x;
}

int main()
{
    scanf("%d",&n);
    scanf("%lf",&money);
    for(int i=1;i<=n;i++) scanf("%lf",&s[i].x);
    for(int i=1;i<=n;i++) scanf("%lf",&s[i].y);
    sort(s+1,s+1+n,cmp);
    double ans=0;
    for(int i=1;i<=n;i++)
    {
        if(money>=s[i].x)
        {
            ans=ans+s[i].y;
            money=money-s[i].x;
        }
        else
        {
            ans=ans+money*s[i].y/s[i].x;
            break;
        }
    }
    printf("%.2lf\n",ans);
    return 0;
}

 

PAT (Advanced Level) 1070. Mooncake (25)

标签:

原文地址:http://www.cnblogs.com/zufezzt/p/5633994.html

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