Time Limit: 2000MS | Memory Limit: 65536K | |
Total Submissions: 4950 | Accepted: 1975 |
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 cluster of cows was in his garden eating his beautiful flowers. Wanting to minimize the subsequent damage, FJ decided to take immediate action and transport each cow back to its own barn.
Each cow i is at a location that is Ti minutes (1 ≤Ti ≤ 2,000,000) away from its own barn. Furthermore, while waiting for transport, she destroysDi (1 ≤ Di ≤ 100) flowers per minute. No matter how hard he tries, FJ can only transport one cow at a time back to her barn. Moving cowi to its barn requires 2 × Ti minutes (Ti to get there andTi to return). FJ starts at the flower patch, transports the cow to its barn, and then walks back to the flowers, taking no extra time to get to the next cow that needs transport.
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
Output
Sample Input
6 3 1 2 5 2 3 3 2 4 1 1 6
Sample Output
86
Hint
#include<set> #include<map> #include<cmath> #include<queue> #include<stack> #include<ctime> #include<cctype> #include<string> #include<cstdio> #include<cstdlib> #include<cstring> #include<iostream> #include<algorithm> using namespace std; typedef long long ll; typedef unsigned long long ull; typedef unsigned int uint; const int maxn = 100000 + 5; const int maxv = 200000 + 5; struct Point{ int T; int D; }point[maxn]; int N; bool cmp(Point a,Point b){ return a.D*b.T>a.T*b.D; } void input(){ scanf("%d",&N); for(int i=0;i<N;i++){ scanf("%d%d",&point[i].T,&point[i].D); } } void solve(){ sort(point,point+N,cmp); ll ans=0,t=0; for(int i=0;i<N;i++){ ans=ans+(ll)point[i].D*t; t=t+(ll)(2*point[i].T); } printf("%I64d\n",ans); } int main(){ input(); solve(); return 0; }