codeforces 767A Snacktower(模拟)

简介: A. Snacktower time limit per test:2 seconds memory limit per test:256 megabytes input:standard input output:standard output ...

A. Snacktower

time limit per test:2 seconds
memory limit per test:256 megabytes
input:standard input
output:standard output

According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of them by placing snacks one on another. Of course, big snacks should be at the bottom of the tower, while small snacks should be at the top.

Years passed, and once different snacks started to fall onto the city, and the residents began to build the Snacktower.

However, they faced some troubles. Each day exactly one snack fell onto the city, but their order was strange. So, at some days the residents weren't able to put the new stack on the top of the Snacktower: they had to wait until all the bigger snacks fell. Of course, in order to not to anger miss Fortune again, the residents placed each snack on the top of the tower immediately as they could do it.

Write a program that models the behavior of Ankh-Morpork residents.

Input

The first line contains single integer n (1 ≤ n ≤ 100 000) — the total number of snacks.

The second line contains n integers, the i-th of them equals the size of the snack which fell on the i-th day. Sizes are distinct integers from 1 to n.

Output

Print n lines. On the i-th of them print the sizes of the snacks which the residents placed on the top of the Snacktower on the i-th day in the order they will do that. If no snack is placed on some day, leave the corresponding line empty.

Examples
Input
3 
3 1 2
Output
3   

2 1
Input
5 
4 5 1 2 3
Output
  
5 4

   
3 2 1
Note

In the example a snack of size 3 fell on the first day, and the residents immediately placed it. On the second day a snack of size 1 fell, and the residents weren't able to place it because they were missing the snack of size 2. On the third day a snack of size 2 fell, and the residents immediately placed it. Right after that they placed the snack of size 1 which had fallen before.

题目链接:http://codeforces.com/contest/767/problem/A

题意:给出一列数,让你把这个数按照从大到小输出,当然数字必须要连续,并且比他小的数在序列中位置必须要在他前面,比如,给你5个数,那么,你第一个数当然要找5,然后看5所在位置前面有没有4接着往下,如果不等就输出空行。

下面给出AC代码:

 1 #include <bits/stdc++.h>
 2 using namespace std;
 3 const int N=100020;
 4 int a[N]={0};
 5 int main()
 6 {
 7     int n;
 8     scanf("%d",&n);
 9     int m=n;
10     for(int i=0;i<n;i++)
11     {
12         int p;
13         cin>>p;
14         a[p]=1;////对各个位置数进行标记,实际上在进行着排序
15         while(a[m]==1)
16         {
17             printf("%d ",m);
18             m--;
19         }
20         printf("\n");
21     }
22     return 0;
23 }

 

目录
相关文章
|
12月前
poj 1068 模拟
大概题意就是告诉你有个n个小括号,每一个“)”左边有多少个“(”都告诉你了,然后让你求出每一对括号之间有多少对括号(包含自己本身)。 思路: 我先计算每个“)”左边有多少个“(”要匹配,然后每遇到一个“)”,然后向前寻找第一个可以匹配的“(”,找到后将其数量减一,这样的话在寻找的过程中经过了几个“)”就表示这对括号里面有多少括号。
22 0
Shortest Path with Obstacle( CodeForces - 1547A )(模拟)
Shortest Path with Obstacle( CodeForces - 1547A )(模拟)
43 0
牛客练习赛71——回文数(模拟+细节)
牛客练习赛71——回文数(模拟+细节)
79 0
洛谷P1067-多项式输出(模拟好题!)
洛谷P1067-多项式输出(模拟好题!)
|
人工智能 BI
洛谷P2006-赵神牛的游戏(模拟)
洛谷P2006-赵神牛的游戏(模拟)
【漫步刷题路】- 模拟实现abs()
若n为正数:tmp = 0 n ^tmp 还是n ( 因为0^a = a ) n^tmp - tmp = n - 0 = n** 若n为负数: tmp = -1 结论:-n ^ -1 = n-1 无论n为任意实数(包括0,正负数都满足) 所以 n^tmp - tmp = n
【漫步刷题路】- 模拟实现abs()