Codeforces Contest 1092 problem D1 Great Vova Wall (Version 1)

Vova’s family is building the Great Vova Wall (named by Vova himself). Vova’s parents, grandparents, grand-grandparents contributed to it. Now it’s totally up to Vova to put the finishing touches.

The current state of the wall can be respresented by a sequence a of n integers, with ai being the height of the i-th part of the wall.

Vova can only use 2×1 bricks to put in the wall (he has infinite supply of them, however).

Vova can put bricks horizontally on the neighboring parts of the wall of equal height. It means that if for some i the current height of part i is the same as for part i+1, then Vova can put a brick there and thus increase both heights by 1. Obviously, Vova can’t put bricks in such a way that its parts turn out to be off the borders (to the left of part 1 of the wall or to the right of part n of it).

The next paragraph is specific to the version 1 of the problem.

Vova can also put bricks vertically. That means increasing height of any part of the wall by 2.

Vova is a perfectionist, so he considers the wall completed when:

all parts of the wall has the same height;
the wall has no empty spaces inside it.
Can Vova complete the wall using any amount of bricks (possibly zero)?

Input
The first line contains a single integer n (1≤n≤2⋅105) — the number of parts in the wall.

The second line contains n integers a1,a2,…,an (1≤ai≤109) — the initial heights of the parts of the wall.

Output
Print “YES” if Vova can complete the wall using any amount of bricks (possibly zero).

Print “NO” otherwise.

Examples
inputCopy
5
2 1 1 2 5
outputCopy
YES
inputCopy
3
4 5 3
outputCopy
YES
inputCopy
2
10 10
outputCopy
YES
inputCopy
3
1 2 3
outputCopy
NO
Note
In the first example Vova can put a brick on parts 2 and 3 to make the wall [2,2,2,2,5] and then put 3 bricks on parts 1 and 2 and 3 bricks on parts 3 and 4 to make it [5,5,5,5,5].

In the second example Vova can put a brick vertically on part 3 to make the wall [4,5,5], then horizontally on parts 2 and 3 to make it [4,6,6] and then vertically on part 1 to make it [6,6,6].

In the third example the wall is already complete.

题意:

给你一堵墙从头到尾的高度,你有1*2的墙砖,可以横着放,可以竖着放,问你能不能使得这堵墙所有的高度最后都一样并且中间没有空隙。

题解:

当遇到相邻两个是相差为偶数的时候,那么就可以把这两个删掉了,因为他们怎么摆都可以,最后删到<=1个的时候就是可以的,因为其他的都是可以随意变的那么最后一个一定能与其它一样高。

#include<bits/stdc++.h>
using namespace std;
stack<int>s;
int main()
{
    int n;
    scanf("%d",&n);
    int x;
    for(int i=1;i<=n;i++)
    {
        scanf("%d",&x);
        if(s.size()&&x%2==s.top()%2)
            s.pop();
        else
        s.push(x);
    }
    if(s.size()>1)
        printf("NO\n");
    else
        printf("YES\n");
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值