首页 > 其他 > 详细

[USACO07JAN]Protecting the Flowers S

时间:2020-05-29 23:25:44      阅读:64      评论:0      收藏:0      [点我收藏+]
一看题面就知道是贪心

随便搞一搞就好了

题目传送门

sol

贪心+排序
对于牛的排序:a.t * b.d<a.d * b.t (手动推一推就好了)
读入的时候,将所有牛每分钟所吃的花数总和统计起来,然后循环中按照顺序,先把当前所要运走的牛吃花的数量减去,然后用剩下的花的总数乘上所要运走的牛的时间t*2(往返两次)

code

#include<bits/stdc++.h>
typedef unsigned long long ll;
using namespace std;
const int maxn=1e5+10; 
int n;
struct node{
	int t,d;
}e[maxn];
bool cmp(node a,node b){return a.t*b.d<a.d*b.t;}
ll sum,ans;
int main(){
	cin>>n;
	for(int i=1;i<=n;i++)cin>>e[i].t>>e[i].d,sum+=e[i].d;
	sort(e+1,e+n+1,cmp);
	for(int i=1;i<=n;i++){
		sum-=e[i].d;
		ans+=sum*(e[i].t*2);
	}
	printf("%lld",ans);
	return 0;
}

代码还是挺清爽的呀!

[USACO07JAN]Protecting the Flowers S

原文:https://www.cnblogs.com/qzwer/p/12989734.html

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