Problem N. Increasing Sequences
时间限制 1000 ms
内存限制 9.765625 MB
Given a string of digits, insert commas to create a sequence of strictly increasing numbers so as to minimize the magnitude of the last number. For this problem, leading zeros are allowed in front of a number.
输入数据
输出数据
For each instance, output the comma separated strictly increasing sequence, with no spaces between commas or numbers. If there are several such sequences, pick the one which has the largest first value;if there's a tie, the largest second number, etc.
样例输入
复制
3456
3546
3526
0001
100000101
0
样例输出
复制
3,4,5,6
35,46
3,5,26
0001
100,000101
$ Mathjax font initiator $