国产探花免费观看_亚洲丰满少妇自慰呻吟_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();		}	}}


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 乐业县| 无为县| 碌曲县| 新邵县| 吉木萨尔县| 鄱阳县| 金堂县| 阿拉善左旗| 游戏| 云和县| 晋城| 定州市| 定陶县| 新密市| 九台市| 奇台县| 永仁县| 扬州市| 长海县| 伊宁县| 东乌珠穆沁旗| 平乐县| 闵行区| 舒兰市| 积石山| 丹江口市| 家居| 开鲁县| 大田县| 龙门县| 廉江市| 昭通市| 利川市| 巩义市| 柞水县| 蒙阴县| 云龙县| 文安县| 烟台市| 饶平县| 台东市|