E - Tanya and Stairways

Posted shengge-777

tags:

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

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 33 steps, 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 (1n10001≤n≤1000) — the total number of numbers pronounced by Tanya.

The second line contains integers a1,a2,,ana1,a2,…,an (1ai10001≤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
7
1 2 3 1 2 3 4
Output
2
3 4
Input
4
1 1 1 1
Output
4
1 1 1 1
Input
5
1 2 3 4 5
Output
1
5
Input
5
1 2 1 2 1
Output
3
2 2 1
#include<stdio.h>
int main()
{
    int k;
    scanf("%d",&k);
    int n[1005];
    int i,j=0,m;
    for(i=0;i<k;i++)
    {
        scanf("%d",&n[i]);
        if(n[i]==1) j++;
    }
    printf("%d
",j);
    for(i=1;i<k;i++)
    {
        if(n[i]==1) printf("%d ",n[i-1]);

    }
        printf("%d ",n[k-1]);
    return 0;
}

 









以上是关于E - Tanya and Stairways的主要内容,如果未能解决你的问题,请参考以下文章

CodeForces659C Tanya and Toys map

Codeforces-C. Tanya and Toys(水题)

codeforces 659C Tanya and Toys

[2016-03-31][codeforces][659C][Tanya and Toys]

2016NEFU集训第n+3场 G - Tanya and Toys

Codeforces Round #540 Tanya and Candies 预处理