首页 > 代码库 > 【贪心】bzoj3850 ZCC Loves Codefires

【贪心】bzoj3850 ZCC Loves Codefires

类似某noip国王游戏。

考虑交换两个题目的顺序,仅会对这两个题目的贡献造成影响。

于是sort,比较时计算两个题目对答案的贡献,较小的放在前面。

#include<cstdio>#include<algorithm>using namespace std;typedef long long ll;struct Point{ll T,K;}a[100001];bool operator < (const Point &a,const Point &b){return a.T*a.K+(a.T+b.T)*b.K<b.T*b.K+(a.T+b.T)*a.K;}int n;ll ans,sum;int main(){	scanf("%d",&n);	for(int i=1;i<=n;++i) scanf("%lld",&a[i].T);	for(int i=1;i<=n;++i) scanf("%lld",&a[i].K);	sort(a+1,a+n+1);	for(int i=1;i<=n;++i)	  {	  	sum+=a[i].T;	  	ans+=sum*a[i].K;	  }	printf("%lld\n",ans);	return 0;}

【贪心】bzoj3850 ZCC Loves Codefires