zoukankan      html  css  js  c++  java
  • POJ-3262

    Protecting the Flowers
    Time Limit: 2000MS   Memory Limit: 65536K
    Total Submissions: 7923   Accepted: 3196

    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

    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

    Output

    Line 1: A single integer that is the minimum number of destroyed flowers

    Sample Input

    6
    3 1
    2 5
    2 3
    3 2
    4 1
    1 6

    Sample Output

    86

    Hint

    FJ returns the cows in the following order: 6, 2, 3, 4, 1, 5. While he is transporting cow 6 to the barn, the others destroy 24 flowers; next he will take cow 2, losing 28 more of his beautiful flora. For the cows 3, 4, 1 he loses 16, 12, and 6 flowers respectively. When he picks cow 5 there are no more cows damaging the flowers, so the loss for that cow is zero. The total flowers lost this way is 24 + 28 + 16 + 12 + 6 = 86.

    题意:

    有n头牛在吃花,它们回笼子的时间为t,每分钟吃花d。FJ想将它们赶回笼子里,求什么顺序可以使花的损失最少。

    开始按d最大其次t最小来贪心,wa掉后才发现原来要t/d最小。

    证明:

    若先取走a牛,则食花量为 2 * t_a * d_b ;
    若先取走b牛,则食花量为 2 * t_b * d_a ;
    两式分别除以 d_a * d_b ;分别为 2 * t_a / d_a         2 * t_b / d_b
    所以要优先 t/d 值小的。

    我真的不擅长推结果式啊喂!!!

    AC代码:

     1 //#include<bits/stdc++.h>
     2 #include<iostream>
     3 #include<algorithm>
     4 using namespace std;
     5 
     6 struct node{
     7     long long t,d;
     8 }cow[100010];
     9 
    10 int cmp(node a,node b){
    11     return (a.t*1.0/a.d)<(b.t*1.0/b.d);
    12 }
    13 
    14 int main(){
    15     ios::sync_with_stdio(false);
    16     int n;
    17     while(cin>>n&&n){
    18         long long ans=0;
    19         for(int i=0;i<n;i++){
    20             cin>>cow[i].t>>cow[i].d;
    21             ans+=cow[i].d;
    22         }
    23         sort(cow,cow+n,cmp);
    24         long long res=0;        
    25         for(int i=0;i<n;i++){
    26             ans-=cow[i].d;
    27             res+=cow[i].t*2*ans;
    28         }
    29         cout<<res<<endl;
    30     }
    31     return 0;
    32 }
  • 相关阅读:
    web测试用例表(自用)
    程序员技术练级攻略
    整理:Google jQuery 引用地址大全和方法(转)
    开发神器之--Sublime Text
    Intellij编译时报“java: System Java Compiler was not found in classpath” 解决办法
    JAVA编译异常处理:java.lang.OutOfMemoryError: PermGen space
    mongo中查询Array类型的字段中元素个数
    BigDecimal进行除法divide运算注意事项
    用来代替本机IP的万能IP:127.0.0.1
    oracle中sys和System的默认密码
  • 原文地址:https://www.cnblogs.com/Kiven5197/p/7346473.html
Copyright © 2011-2022 走看看