poj 3262 Protecting the Flowers
Posted ZefengYao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了poj 3262 Protecting the Flowers相关的知识,希望对你有一定的参考价值。
Time Limit: 2000MS | Memory Limit: 65536K | |
Total Submissions: 6484 | Accepted: 2595 |
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 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 her barn. Moving cow i to its barn requires 2 × Ti minutes (Ti to get there and Ti 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
Lines 2..N+1: Each line contains two space-separated integers, Ti and Di, that describe a single cow‘s characteristics
Output
Sample Input
6 3 1 2 5 2 3 3 2 4 1 1 6
Sample Output
86
Hint
#define _CRT_SECURE_NO_DEPRECATE #include<iostream> #include<algorithm> #include<queue> using namespace std; const int N_MAX = 100000; struct cow { float T;//每头牛往返半程时间 float D;//每头牛每分钟吃花数量 bool operator <(const cow&b)const { return (D / T) < (b.D / b.T); } }; cow cows; priority_queue<cow>que; int main() { int N; while (cin >> N) { long long sum = 0; for (int i = 0;i < N;i++) { scanf("%f%f", &cows.T, &cows.D); sum += cows.D; que.push(cows); } long long flower=0; for (int i = 0;i < N-1;i++) { sum -= que.top().D; flower += 2*que.top().T*sum; que.pop(); } que.pop(); cout << flower << endl; } return 0; }
以上是关于poj 3262 Protecting the Flowers的主要内容,如果未能解决你的问题,请参考以下文章
poj3262 Protecting the Flowers
POJ 3262 Protecting the flowers
POJ 3262 Protecting the Flowers 题解 《挑战程序设计竞赛》
POJ 3362 Protecting the Flowers