BZOJ 1634: [Usaco2007 Jan]Protecting the Flowers 护花
题目
1634: [Usaco2007 Jan]Protecting the Flowers 护花
Time Limit: 5 Sec Memory Limit: 64 MBSubmit: 487 Solved: 307
[Submit][Status]
Description
Farmer John went to cut some wood and left N (2 <= N <= 100,000) cows eating the grass, as usual. When he returned, he found to his horror that the cows were in his garden eating his beautiful flowers. Wanting to minimize the subsequent damage, FJ decided to take immediate action and transport the cows back to their barn. Each cow i is at a location that is Ti minutes (1 <= Ti <= 2,000,000) away from the barn. Furthermore, while waiting for transport, she destroys Di (1 <= Di <= 100) flowers per minute. No matter how hard he tries,FJ can only transport one cow at a time back to the barn. Moving cow i to the barn requires 2*Ti minutes (Ti to get there and Ti to return). Write a program to determine the order in which FJ should pick up the cows so that the total number of flowers destroyed is minimized.
Input
* Line 1: A single integer
N * Lines 2..N+1: Each line contains two space-separated integers, Ti and Di, that describe a single cow's characteristics
第1行输入N,之后N行每行输入两个整数Ti和Di.
Output
* Line 1: A single integer that is the minimum number of destroyed flowers
一个整数,表示最小数量的花朵被吞食.
Sample Input
3 1
2 5
2 3
3 2
4 1
1 6
Sample Output
HINT
约翰用6,2,3,4,1,5的顺序来运送他的奶牛.
题解
这里我们看相邻的两头牛a,b不会改变其他牛的答案,唯一有区别的就是a牛运送的时间里b吃的花的数量和b牛运送时间里a牛吃的花的数量,所以很明显可以比出优劣,这样的性质我们可以应用到所有牛的身上,所以写个cmp,直接排序就好啦!
代码
1 /*Author:WNJXYK*/ 2 #include<cstdio> 3 #include<algorithm> 4 using namespace std; 5 struct Cow{ 6 int eat; 7 int tim; 8 }; 9 Cow cow[100010]; 10 int n; 11 bool cmp(Cow a,Cow b){ 12 if (a.eat*b.tim>b.eat*a.tim) return true; 13 return false; 14 } 15 int main(){ 16 scanf("%d",&n); 17 for (int i=1;i<=n;i++) scanf("%d%d",&cow[i].tim,&cow[i].eat); 18 sort(cow+1,cow+n+1,cmp); 19 long long ans=0; 20 long long tim=0; 21 for (int i=1;i<=n;i++){ 22 ans+=tim*cow[i].eat; 23 tim+=cow[i].tim*2; 24 } 25 printf("%lld\n",ans); 26 return 0; 27 }