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

POJ 3362 Protecting the Flowers

时间:2016-03-23 09:03:47      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:

这题和金华区域赛A题(HDU 4442)是一样的做法。

对两个奶牛进行分析,选择两个奶牛总花费少的方式排序。

bool cmp(const X&a,const X&b)
{
  return a.t*b.d<b.t*a.d;
}

#include<cstdio>
#include<cstring>
#include<cmath>
#include<algorithm>
using namespace std;

const int maxn=100000+10;
struct X
{
    long long t;
    long long d;
} s[maxn];
int n;

bool cmp(const X&a,const X&b)
{
    return a.t*b.d<b.t*a.d;
}

int main()
{
    while(~scanf("%d",&n))
    {
        for(int i=1; i<=n; i++) scanf("%lld%lld",&s[i].t,&s[i].d);
        sort(s+1,s+1+n,cmp);
        long long ans=0;
        long long sum=2*s[1].t;
        for(int i=2; i<=n; i++)
        {
            ans=ans+s[i].d*sum;
            sum=sum+2*s[i].t;
        }
        printf("%lld\n",ans);
    }
    return 0;
}

 

POJ 3362 Protecting the Flowers

标签:

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

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