国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

#398 DIV2 A. Snacktower

2019-11-08 02:35:58
字體:
來源:轉載
供稿:網友
http://codeforces.com/contest/767/PRoblem/AA. Snacktowertime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard 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.

Examplesinput
33 1 2output
3 2 1input
54 5 1 2 3output
 5 4  3 2 1Note

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.

這個題我寫的方法很麻煩,終測超時了,看了大神的代碼給跪了~~~

import java.util.Scanner;public class Main {	/**	 * @param args	 */	public static void main(String[] args) {		// TODO Auto-generated method stub		Scanner scan = new Scanner(System.in);		int n = scan.nextInt();		int[] d = new int[n+1];		int j = n;		for(int i=1;i<=n;i++){			int a = scan.nextInt();			d[a] = 1;			while(d[j]==1){				System.out.print(j+" ");				j--;			}			System.out.println();		}	}}


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 台州市| 兴安盟| 中山市| 普宁市| 博乐市| 抚顺市| 临城县| 萝北县| 怀柔区| 土默特右旗| 扎鲁特旗| 乌兰察布市| 栾川县| 咸丰县| 大渡口区| 武强县| 蓝田县| 邵东县| 汝阳县| 扎囊县| 邛崃市| 根河市| 安仁县| 樟树市| 华亭县| 福鼎市| 隆林| 拜泉县| 克山县| 合水县| 泰州市| 江阴市| 苏州市| 疏勒县| 巫溪县| 阳城县| 依安县| 明溪县| 江永县| 华蓥市| 抚远县|