A. Tanya and Stairways

A. Tanya and Stairways

time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

Little girl Tanya climbs the stairs inside a multi-storey building. Every time Tanya climbs a stairway, she starts counting steps from 11 to the number of steps in this stairway. She speaks every number aloud. For example, if she climbs two stairways, the first of which contains 33steps, and the second contains 44 steps, she will pronounce the numbers 1,2,3,1,2,3,41,2,3,1,2,3,4.

You are given all the numbers pronounced by Tanya. How many stairways did she climb? Also, output the number of steps in each stairway.

The given sequence will be a valid sequence that Tanya could have pronounced when climbing one or more stairways.

Input

The first line contains nn (1≤n≤10001≤n≤1000) — the total number of numbers pronounced by Tanya.

The second line contains integers a1,a2,…,ana1,a2,…,an (1≤ai≤10001≤ai≤1000) — all the numbers Tanya pronounced while climbing the stairs, in order from the first to the last pronounced number. Passing a stairway with xx steps, she will pronounce the numbers 1,2,…,x1,2,…,x in that order.

The given sequence will be a valid sequence that Tanya could have pronounced when climbing one or more stairways.

Output

In the first line, output tt — the number of stairways that Tanya climbed. In the second line, output tt numbers — the number of steps in each stairway she climbed. Write the numbers in the correct order of passage of the stairways.

Examples

input

Copy

7
1 2 3 1 2 3 4

output

Copy

2
3 4 

input

Copy

4
1 1 1 1

output

Copy

4
1 1 1 1 

input

Copy

5
1 2 3 4 5

output

Copy

1
5 

input

Copy

5
1 2 1 2 1

output

Copy

3
2 2 1 
#include <iostream>
#include<stdio.h>
using namespace std;
int main()
{
    int i,n,a[1010];
    cin>>n;
    for(i=1; i<=n; i++)
        cin>>a[i];
    a[0]=0;
    for(i=1; i<=n; i++)
    {
        if(a[i-1]<a[i])a[i-1]=0;
    }
    int k=0;
    int b[1010];
    for(i=1; i<=n; i++)
    {
        if(a[i]!=0)b[++k]=a[i];
    }
    printf("%d\n",k);
    for(i=1; i<=k; i++)
    {
        if(i==1)printf("%d",b[i]);
        else printf(" %d",b[i]);
    }
    cout<<endl;

    return 0;
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值