303878: CF747E. Comments

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Comments

题目描述

A rare article in the Internet is posted without a possibility to comment it. On a Polycarp's website each article has comments feed. Each comment on Polycarp's website is a non-empty string consisting of uppercase and lowercase letters of English alphabet. Comments have tree-like structure, that means each comment except root comments (comments of the highest level) has exactly one parent comment. When Polycarp wants to save comments to his hard drive he uses the following format. Each comment he writes in the following format: - at first, the text of the comment is written; - after that the number of comments is written, for which this comment is a parent comment (i. e. the number of the replies to this comments); - after that the comments for which this comment is a parent comment are written (the writing of these comments uses the same algorithm). All elements in this format are separated by single comma. Similarly, the comments of the first level are separated by comma.For example, if the comments look like: ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF747E/7ae7c2c94703e493268a07ff52889efe5206362d.png)then the first comment is written as "hello,2,ok,0,bye,0", the second is written as "test,0", the third comment is written as "one,1,two,2,a,0,b,0". The whole comments feed is written as: "hello,2,ok,0,bye,0,test,0,one,1,two,2,a,0,b,0". For a given comments feed in the format specified above print the comments in a different format: - at first, print a integer $ d $ — the maximum depth of nesting comments; - after that print $ d $ lines, the $ i $ -th of them corresponds to nesting level $ i $ ; - for the $ i $ -th row print comments of nesting level $ i $ in the order of their appearance in the Policarp's comments feed, separated by space.

输入输出格式

输入格式


The first line contains non-empty comments feed in the described format. It consists of uppercase and lowercase letters of English alphabet, digits and commas. It is guaranteed that each comment is a non-empty string consisting of uppercase and lowercase English characters. Each of the number of comments is integer (consisting of at least one digit), and either equals $ 0 $ or does not contain leading zeros. The length of the whole string does not exceed $ 10^{6} $ . It is guaranteed that given structure of comments is valid.

输出格式


Print comments in a format that is given in the statement. For each level of nesting, comments should be printed in the order they are given in the input.

输入输出样例

输入样例 #1

hello,2,ok,0,bye,0,test,0,one,1,two,2,a,0,b,0

输出样例 #1

3
hello test one 
ok bye two 
a b 

输入样例 #2

a,5,A,0,a,0,A,0,a,0,A,0

输出样例 #2

2
a 
A a A a A 

输入样例 #3

A,3,B,2,C,0,D,1,E,0,F,1,G,0,H,1,I,1,J,0,K,1,L,0,M,2,N,0,O,1,P,0

输出样例 #3

4
A K M 
B F H L N O 
C D G I P 
E J 

说明

The first example is explained in the statements.

Input

加入题单

算法标签: