zoukankan      html  css  js  c++  java
  • 767A Snacktower

    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.

     1 #include <string.h>
     2 #include <stdio.h>
     3 #include <iostream>
     4 using namespace std;
     5 #define maxn 1000005
     6 int a[maxn],b[maxn];
     7 int main()
     8 {
     9     int n;
    10     while((scanf("%d",&n))!=EOF)
    11     {
    12         memset(a,0,sizeof(a));
    13         memset(b,0,sizeof(b));
    14         int t=n;
    15         for(int i=1;i<=n;i++)
    16         {
    17             scanf("%d",&a[i]);
    18             b[a[i]]=1;
    19             for(;b[t]==1;t--)
    20               printf("%d ",t);
    21             printf("
    ");
    22         }
    23     }
    24     return 0;
    25 }
  • 相关阅读:
    C++模板类报错:函数未定义
    linux top命令和sar命令
    XAMPP的服务在CentOS中无法启动
    XAMPP安装LAMP后无法使用数据库
    关于try catch语句中finally代码块有没有必要的思考
    eclipse卡死的两种解决办法
    VS2019 配置 OpenCV-4.4.0
    VS2019+OpenCV4配置报错:模块计算机类型x64与目标计算机类型x86冲突
    slide js用法 公告 广告 新闻滚动
    input type:text输入框点击输入,文字消失
  • 原文地址:https://www.cnblogs.com/jxust-jiege666/p/6527988.html
Copyright © 2011-2022 走看看