博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
cf398A Snacktower
阅读量:6164 次
发布时间:2019-06-21

本文共 2472 字,大约阅读时间需要 8 分钟。

A. Snacktower

time limit per test2 seconds
memory limit per test256 megabytes
inputstandard input
outputstandard 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.

#include 
using namespace std;const int MAXN = 100010;int n, a[MAXN];int main() { scanf( "%d", &n ); int now = n; for( int i = 0; i < n; ++i ) { int s; scanf( "%d", &s ); a[s] = true;//出现过就可以判断为真 while( a[now] ) printf( "%d ", now-- ); putchar('\n'); } return 0;}//看了这个代码,感觉自己的思想zz啊

转载于:https://www.cnblogs.com/zxy160/p/7215160.html

你可能感兴趣的文章
去除本机利用ssh协议登陆远程机器的痕迹
查看>>
2012-13学年上半学期路由与交换课程设计-作业-2
查看>>
01.学习笔记-linux操作系统常用命令
查看>>
批量生成多个账户并设置密码
查看>>
Android 选项菜单
查看>>
TCP端口号收藏
查看>>
MQTT协议
查看>>
cannot remove `libtoolT’: No such file or directory
查看>>
多功能PCIE交换机之七:单NT到双NT
查看>>
利用linux mutt 发送邮件(在Shell脚本中使用比较方便)
查看>>
更改VMware虚拟机硬件版本
查看>>
VMware、vSphere 6.0 介绍
查看>>
maven本地安装jar
查看>>
我的友情链接
查看>>
Linux系统管理_附加控制权限-Redhat Enterprise 5
查看>>
Ubuntu Linux下安装MySQL
查看>>
Cookie和Session的关系(个人理解)
查看>>
侧栏广告 image flash
查看>>
BarTender怎样同时打印自动日期和流水号?
查看>>
Day6 数据清洗(2)
查看>>