zoukankan      html  css  js  c++  java
  • codeforces 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.

    题目链接: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("
    ");
    21     }
    22     return 0;
    23 }
  • 相关阅读:
    mysql 触发器
    Yii 1.0 基础
    python解释执行原理(转载)
    python中使用selenium调用Firefox缺少geckodriver解决方法
    Python中os和shutil模块实用方法集锦
    pytesseract使用
    anaconda安装第三方库
    anaconda spyder异常如何重新启动
    windows下python3.6 32bit 安装django
    设置SO_RECVBUF和SO_SENDBUF套接字选项
  • 原文地址:https://www.cnblogs.com/ECJTUACM-873284962/p/6817792.html
Copyright © 2011-2022 走看看