题目
分析
贪心。
假设有两头牛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;
}