Array Restoration

题意翻译

``` 给你一个长度为 $n$ 的数列,初始全部为 $0$ ,你可以任意(任选区间)进行 $q$ 次操作,第 $i$ 次操作使 $[l_i,r_i]$ 内的数全部变为 $i$ ,你必须进行全部 $q$ 次操作,且每个操作区间都不能为空,所有操作区间的并必须为 $[1,n]$。 现在给你一个数列,其中 $0$ 代表这个位置可以是任何数,问你能否通过上述的 $q$ 次操作得到这个数列。 输入为第一行 $n\ q$ 第二行 $n$ 个整数 $a_i$ 能得到则输出"YES"以及任意一种方案(最后得到的数列,需要把所有 $0$ 替换成其它数),不能则输出"NO"。 数据范围见英文题面 ```

题目描述

Initially there was an array $ a $ consisting of $ n $ integers. Positions in it are numbered from $ 1 $ to $ n $ . Exactly $ q $ queries were performed on the array. During the $ i $ -th query some segment $ (l_i, r_i) $ $ (1 \le l_i \le r_i \le n) $ was selected and values of elements on positions from $ l_i $ to $ r_i $ inclusive got changed to $ i $ . The order of the queries couldn't be changed and all $ q $ queries were applied. It is also known that every position from $ 1 $ to $ n $ got covered by at least one segment. We could have offered you the problem about checking if some given array (consisting of $ n $ integers with values from $ 1 $ to $ q $ ) can be obtained by the aforementioned queries. However, we decided that it will come too easy for you. So the enhancement we introduced to it is the following. Some set of positions (possibly empty) in this array is selected and values of elements on these positions are set to $ 0 $ . Your task is to check if this array can be obtained by the aforementioned queries. Also if it can be obtained then restore this array. If there are multiple possible arrays then print any of them.

输入输出格式

输入格式


The first line contains two integers $ n $ and $ q $ ( $ 1 \le n, q \le 2 \cdot 10^5 $ ) — the number of elements of the array and the number of queries perfomed on it. The second line contains $ n $ integer numbers $ a_1, a_2, \dots, a_n $ ( $ 0 \le a_i \le q $ ) — the resulting array. If element at some position $ j $ is equal to $ 0 $ then the value of element at this position can be any integer from $ 1 $ to $ q $ .

输出格式


Print "YES" if the array $ a $ can be obtained by performing $ q $ queries. Segments $ (l_i, r_i) $ $ (1 \le l_i \le r_i \le n) $ are chosen separately for each query. Every position from $ 1 $ to $ n $ should be covered by at least one segment. Otherwise print "NO". If some array can be obtained then print $ n $ integers on the second line — the $ i $ -th number should be equal to the $ i $ -th element of the resulting array and should have value from $ 1 $ to $ q $ . This array should be obtainable by performing exactly $ q $ queries. If there are multiple possible arrays then print any of them.

输入输出样例

输入样例 #1

4 3
1 0 2 3

输出样例 #1

YES
1 2 2 3

输入样例 #2

3 10
10 10 10

输出样例 #2

YES
10 10 10 

输入样例 #3

5 6
6 5 6 2 2

输出样例 #3

NO

输入样例 #4

3 5
0 0 0

输出样例 #4

YES
5 4 2

说明

In the first example you can also replace $ 0 $ with $ 1 $ but not with $ 3 $ . In the second example it doesn't really matter what segments to choose until query $ 10 $ when the segment is $ (1, 3) $ . The third example showcases the fact that the order of queries can't be changed, you can't firstly set $ (1, 3) $ to $ 6 $ and after that change $ (2, 2) $ to $ 5 $ . The segment of $ 5 $ should be applied before segment of $ 6 $ . There is a lot of correct resulting arrays for the fourth example.