A01 字典排序
2021-03-27 15:25
标签:表示 ace blog i++ iostream ref git can log 参考:https://blog.csdn.net/qq_41685509/article/details/107440231 题目:给一串整数,有些数字是0,把0换成正整数,使得整个数组非递减且字典序最小。 样例输入: 样例输出: 代码:对不对也不知道,没有测试环境。。。 A01 字典排序 标签:表示 ace blog i++ iostream ref git can log 原文地址:https://www.cnblogs.com/solitude-cosmos/p/13656831.html
输入:第一行一个整数n,表示数组元素个数;第二行n个整数。
输出:替换0之后的非递减数组,或者无解输出-1。 5
0 0 1 2 0
1 1 1 2 2
1 #include