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

PAT:1070. Mooncake (25) AC

时间:2015-03-10 13:52:53      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:

#include<stdio.h>
#include<string.h>
#include<algorithm>
using namespace std;

struct moomcake
{
  double store;      //【cation】这个可能是小数!
  double sumPrice;
  double solePrice;
}M[1010];

bool cmp(moomcake a,moomcake b)
{
  return a.solePrice>b.solePrice;
}

int main()
{
  memset(M,-1,sizeof(M));
  int n;
  double d;
  scanf("%d%lf",&n,&d);
  for(int i=0 ; i<n ; ++i)
    scanf("%lf",&M[i].store);
  for(int i=0 ; i<n ; ++i)
  {
    scanf("%lf",&M[i].sumPrice);
    M[i].solePrice=M[i].sumPrice/M[i].store;
  }
  sort(M,M+n,cmp);
  double p=0;
  for(int i=0 ; i<n && d>0; ++i)
  {
    if(M[i].store<=d)
    {
      p+=M[i].sumPrice;
      d-=M[i].store;
    }
    else if(M[i].store>d)
    {
      p+=M[i].solePrice*d;
      break;
    }
  }
  printf("%.2f\n",p);
  return 0;
}

PAT:1070. Mooncake (25) AC

标签:

原文地址:http://www.cnblogs.com/Evence/p/4325704.html

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