zoukankan      html  css  js  c++  java
  • 1629: [Usaco2007 Demo]Cow Acrobats

    1629: [Usaco2007 Demo]Cow Acrobats

    Time Limit: 5 Sec  Memory Limit: 64 MB
    Submit: 1023  Solved: 531
    [Submit][Status][Discuss]

    Description

    Farmer John's N (1 <= N <= 50,000) cows (numbered 1..N) are planning to run away and join the circus. Their hoofed feet prevent them from tightrope walking and swinging from the trapeze (and their last attempt at firing a cow out of a cannon met with a dismal failure). Thus, they have decided to practice performing acrobatic stunts. The cows aren't terribly creative and have only come up with one acrobatic stunt: standing on top of each other to form a vertical stack of some height. The cows are trying to figure out the order in which they should arrange themselves within this stack. Each of the N cows has an associated weight (1 <= W_i <= 10,000) and strength (1 <= S_i <= 1,000,000,000). The risk of a cow collapsing is equal to the combined weight of all cows on top of her (not including her own weight, of course) minus her strength (so that a stronger cow has a lower risk). Your task is to determine an ordering of the cows that minimizes the greatest risk of collapse for any of the cows. //有三个头牛,下面三行二个数分别代表其体重及力量 //它们玩叠罗汉的游戏,每个牛的危险值等于它上面的牛的体重总和减去它的力量值,因为它要扛起上面所有的牛嘛. //求所有方案中危险值最大的最小

    Input

    * Line 1: A single line with the integer N. * Lines 2..N+1: Line i+1 describes cow i with two space-separated integers, W_i and S_i.

    Output

    * Line 1: A single integer, giving the largest risk of all the cows in any optimal ordering that minimizes the risk.

    Sample Input

    3
    10 3
    2 5
    3 3

    Sample Output

    2

    OUTPUT DETAILS:

    Put the cow with weight 10 on the bottom. She will carry the other
    two cows, so the risk of her collapsing is 2+3-3=2. The other cows
    have lower risk of collapsing.

    HINT

     

    Source

    Silver

    Analysis

    贪心!

    局部贪心。

    现在前面有一个已经叠好的罗汉,而我们要在下面塞两头牛A B

    为了让A在B上,有sum + a.weight - b.strengh < sum + b.weight - a.strengh

    也就是说,前面的决策不影响这里,这里的决策也不影响前面

    只要将队列按这个模式排好就行

     

    Code

     1 #include<cstdio>
     2 #include<iostream>
     3 #include<algorithm>
     4 using namespace std;
     5 
     6 struct node{
     7     long long str,wei;
     8 }arr[1000000];
     9 
    10 bool cmp(const node &a,const node &b){
    11     return (a.wei-b.str)<(b.wei-a.str);
    12 }
    13 
    14 long long n,ret = -10000000000;
    15 
    16 int main(){
    17     scanf("%lld",&n);
    18     for(int i = 1;i <= n;i++){
    19         scanf("%lld%lld",&arr[i].wei,&arr[i].str);
    20     }
    21     
    22     sort(arr+1,arr+1+n,cmp);
    23     
    24     long long sum = 0;
    25     for(int i = 1;i <= n;i++){
    26 //        printf("%d/%d ",arr[i].wei,arr[i].str);
    27         ret = max(ret,sum-arr[i].str);
    28         sum += arr[i].wei;
    29     }
    30     
    31     printf("%lld",ret);    
    32     return 0;
    33 } 
    贪心 x2
    转载请注明出处 -- 如有意见欢迎评论
  • 相关阅读:
    windows bat脚本检测空白文件
    linux把文件夹作为img镜像给rk3288烧录
    嵌入式非浮点型交叉编译器下载
    嵌入式linux date -s写入保存时间后,开机启动相差八小时
    android5.1编译 collect2: ld terminated with signal 9 [Killed]
    qt5.9.9交叉编译并运行到目标板完整版(无界面版本)
    嵌入式linux编译移植 vsftpd 源码修改
    嵌入式Linux板子date时间和hwclock不一致
    ubuntu14.0输入密码后进不去桌面
    C 语言 指针
  • 原文地址:https://www.cnblogs.com/Chorolop/p/7501036.html
Copyright © 2011-2022 走看看