Henu ACM Round#19 B Luxurious Houses

Posted Visitor

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Henu ACM Round#19 B Luxurious Houses相关的知识,希望对你有一定的参考价值。

【链接】 我是链接,点我呀:)
【题意】


在这里输入题意

【题解】


从右往左维护最大值。
看到比最大值小(或等于)的话。就递增到比最大值大1就好。

【代码】

#include <bits/stdc++.h>
using namespace std;

const int N = 1e5;

int a[N+10],n;

int main()
{
    cin >> n;
    for(int i = 1;i <= n;i++) cin >> a[i];
    int now=0;
    for (int i = n;i >= 1;i--){
        int t = a[i];
        if (a[i]<=now){
                a[i] = now-a[i]+1;

        }else a[i] = 0;

        if (i==n)
                now = t;
        else
                now = max(now,t);
    }
    for (int i = 1;i <= n;i++) cout<<a[i]<<' ';
    return 0;
}

以上是关于Henu ACM Round#19 B Luxurious Houses的主要内容,如果未能解决你的问题,请参考以下文章

Henu ACM Round#19 A Vasya the Hipster

Henu ACM Round#19 C Developing Skills

Henu ACM Round#19 E Om Nom and Candies

Henu ACM Round#19 D Points on Line

???Henu ACM Round#17 B???USB Flash Drives

Henu ACM Round#16 B Bear and Colors