2984.Restoring Increasing Sequence

Time Limit: 1s Memory Limit: 256MB

Peter wrote on the board a strictly increasing sequence of positive integers a1,a2,...,an. Then Vasil replaced some digits in the numbers of this sequence by question marks. Thus, each question mark corresponds to exactly one lost digit.

Restore the the original sequence knowing digits remaining on the board.

Input Format(From the terminal/stdin)

The first line of the input contains integer n (1 \le n \le 105) - the length of the sequence. Next n lines contain one element of the sequence each. Each element consists only of digits and question marks. No element starts from digit 0. Each element has length from 1 to 8 characters, inclusive.

Output Format(To the terminal/stdout)

If the answer exists, print in the first line "YES" (without the quotes). Next n lines must contain the sequence of positive integers - a possible variant of Peter's sequence. The found sequence must be strictly increasing, it must be transformed from the given one by replacing each question mark by a single digit. All numbers on the resulting sequence must be written without leading zeroes. If there are multiple solutions, print any of them.

If there is no answer, print a single line "NO" (without the quotes).

Sample Input 1

Copy
3
?
18
1?
 \n
 \n
  \n
  \n

Sample Output 1

Copy
YES
1
18
19
   \n
 \n
  \n
  \n

Sample Input 2

Copy
2
??
?
 \n
  \n
 \n

Sample Output 2

Copy
NO
  \n

Sample Input 3

Copy
5
12224
12??5
12226
?0000
?00000
 \n
     \n
     \n
     \n
     \n
      \n

Sample Output 3

Copy
YES
12224
12225
12226
20000
100000
   \n
     \n
     \n
     \n
     \n
      \n

Submit

请先 登录

© 2025 FAQs