Codeforces Round #611 (Div. 3) E - New Year Parties (贪心)

Posted herlo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces Round #611 (Div. 3) E - New Year Parties (贪心)相关的知识,希望对你有一定的参考价值。

?? ?? ??

题意:一些人住在一些房子里,每个人最多移动一次,问你房子的最大最小数量

求最大和求最小完全就是两个题嘛,,,

求最小的时候,如果 i 位置有人住,那么我们贪心地将 i,i +1 ,i + 2 全部移动到 i + 1 ,然后继续枚举下一段即可。

int a[MAXN],b[MAXN];//此位置房子数
int main()
{
    int n;cin>>n;
    rpp(i,n) 
    {
        int pos;cin>>pos;
        ++a[pos],++b[pos];//用b保留原始数组
    }
    //对a进行分散操作
    for(int i=0;i<=n;++i) if(a[i]>1) --a[i],++a[i+1];
    for(int i=n+1;i>=1;--i) if(a[i]>1) --a[i],++a[i-1];
    int mx=0,mn=0;
    for(int i=0;i<=n+1;++i) if(a[i]) ++mx;
    for(int i=1;i<=n+1;) 
    {
        if(b[i]) i+=3,++mn;
        else ++i;
    }
    cout<<mn<<" "<<mx<<endl; 
    return 0;
}

以上是关于Codeforces Round #611 (Div. 3) E - New Year Parties (贪心)的主要内容,如果未能解决你的问题,请参考以下文章

Codeforces Round #611 (Div. 3)

Codeforces Round #611 (Div. 3) E

Codeforces Round #611 (Div. 3)

codeforces Round #611

Codeforces Round #611 (Div. 3)

Codeforces Round #611 (Div. 3) D - Christmas Trees(BFS)