「USACO2007JAN」Protecting the Flowers(贪心)

题目

传送门

分析

贪心。
假设有两头牛i,j,
若先赶走i,则j的贡献为d[j]*t[i];
若先赶走j,则i的贡献为d[i]*t[j].
当d[i]*t[j]<d[j]*t[i]时,先赶走J最优。
为了避免乘法结果太大,贪心公式应为:
d[i]/t[i]<d[j]/t[j]。

代码

#include<bits/stdc++.h>
using namespace std;
#define INF 0x3f3f3f3f
#define full(a,b) memset(a,b,sizeof a)
#define ll long long
#define ui unsigned int
int read()
{
	int x=0,f=1;char ch=getchar();
	while(ch<'0'||ch>'9') f=ch=='-'?-1:1,ch=getchar();
	while(ch>='0'&&ch<='9') x=(x<<1)+(x<<3)+(ch^48),ch=getchar();
	return x*f;
}
#define debug 1
#define N 100005
int n;ll sum,ans;
struct node
{
	int t,d;
} arr[N];
int cmp(node x,node y)
{
	return x.d*1.0/x.t>y.d*1.0/y.t;//先赶走吃的最多的 
}
int main()
{
	if(debug==-1)
	{
		freopen("Protecting the Flowers.in","r",stdin);
		freopen("Protecting the Flowers.out","w",stdout);
	}
	n=read();
	for(int i=1; i<=n; i++)
	{
		arr[i].t=read(),arr[i].d=read();
		sum+=arr[i].d;
	}
	sort(arr+1,arr+1+n,cmp);
	for(int i=1; i<=n; i++)
	{
		sum-=arr[i].d;//赶走i
		ans+=2*arr[i].t*sum; 
	}
	printf("%lld",ans);
	return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值