POJ 3362 Protecting the Flowers

Posted Fighting Heart

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了POJ 3362 Protecting the Flowers相关的知识,希望对你有一定的参考价值。

这题和金华区域赛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的主要内容,如果未能解决你的问题,请参考以下文章

POJ3262 Protecting the Flowers 贪心

poj3262 Protecting the Flowers

POJ 3262 Protecting the flowers

POJ 3262 Protecting the Flowers 题解 《挑战程序设计竞赛》

Android: protecting the kernel

Protecting the flowers 贪心