首页 > 其他 > 详细

【贪心】bzoj3850 ZCC Loves Codefires

时间:2015-01-24 22:38:36      阅读:355      评论:0      收藏:0      [点我收藏+]

类似某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

原文:http://www.cnblogs.com/autsky-jadek/p/4246644.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!