码迷,mamicode.com
首页 > 其他好文 > 详细

【贪心】bzoj3850 ZCC Loves Codefires

时间:2015-01-24 22:41:08      阅读:163      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!