BZOJ 1629 Usaco Cow Acrobats

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了BZOJ 1629 Usaco Cow Acrobats相关的知识,希望对你有一定的参考价值。

感觉就是一道贪心的题目,但是苦于没法下手。
在瞎写了几组数据之后,猜了一个结论。A1-B1<A2-B2
在看了看题解之后,发现自己好菜啊。

首先由两个前提条件
1. 两头牛调换顺序,并不会影响后面牛的计算。
2. 两头牛的顺序会影响答案.

所以 我们设 A,B为两个相邻的牛
需要满足 Ax-By < Bx-Ay 的关系 才会使答案变小

#include <cstdio>
#include <algorithm>
 
struct node{
    long long  x,y;
}now[50005];
 
int n;
bool CMP(const node &a,const node &b){
    return a.x-b.y<b.x-a.y;
}
 
int main(){
    scanf("%d",&n);
    for(int i=1;i<=n;i++) scanf("%lld%lld",&now[i].x,&now[i].y);
    std::sort(now+1,now+1+n,CMP);
    long long tot = 0,Max=-23333333333;
    for(int i=1;i<=n;i++){
        Max = std::max(Max,tot-now[i].y);
        tot+=now[i].x;
    }   
    printf("%lld\n",Max);
    return 0;
}

 

以上是关于BZOJ 1629 Usaco Cow Acrobats的主要内容,如果未能解决你的问题,请参考以下文章

刷水-贪心BZOJ1629-[Usaco2007 Demo]Cow Acrobats

1629: [Usaco2007 Demo]Cow Acrobats

[USACO2007 Demo] Cow Acrobats

bzoj4745: [Usaco2016 Dec]Cow Checklist

BZOJ 1616 Usaco2008 Cow Travelling

Bzoj3893 [Usaco2014 Dec]Cow Jog