CF1256C.Platforms Jumping

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

There is a river of width nn . The left bank of the river is cell 00 and the right bank is cell n+1n + 1 (more formally, the river can be represented as a sequence of n+2n + 2 cells numbered from 00 to n+1n + 1 ). There are also mm wooden platforms on a river, the ii -th platform has length cic_i (so the ii -th platform takes cic_i consecutive cells of the river). It is guaranteed that the sum of lengths of platforms does not exceed nn .

You are standing at 00 and want to reach n+1n+1 somehow. If you are standing at the position xx , you can jump to any position in the range [x+1;x+d][x + 1; x + d] . However you don't really like the water so you can jump only to such cells that belong to some wooden platform. For example, if d=1d=1 , you can jump only to the next position (if it belongs to the wooden platform). You can assume that cells 00 and n+1n+1 belong to wooden platforms.

You want to know if it is possible to reach n+1n+1 from 00 if you can move any platform to the left or to the right arbitrary number of times (possibly, zero) as long as they do not intersect each other (but two platforms can touch each other). It also means that you cannot change the relative order of platforms.

Note that you should move platforms until you start jumping (in other words, you first move the platforms and then start jumping).

For example, if n=7n=7 , m=3m=3 , d=2d=2 and c=[1,2,1]c = [1, 2, 1] , then one of the ways to reach 88 from 00 is follow:

The first example: n=7n=7 .

输入格式

The first line of the input contains three integers nn , mm and dd ( 1n,m,d1000,mn1 \le n, m, d \le 1000, m \le n ) — the width of the river, the number of platforms and the maximum distance of your jump, correspondingly.

The second line of the input contains mm integers c1,c2,,cmc_1, c_2, \dots, c_m ( 1cin,i=1mcin1 \le c_i \le n, \sum\limits_{i=1}^{m} c_i \le n ), where cic_i is the length of the ii -th platform.

输出格式

If it is impossible to reach n+1n+1 from 00 , print NO in the first line. Otherwise, print YES in the first line and the array aa of length nn in the second line — the sequence of river cells (excluding cell 00 and cell n+1n + 1 ).

If the cell ii does not belong to any platform, aia_i should be 00 . Otherwise, it should be equal to the index of the platform ( 11 -indexed, platforms are numbered from 11 to mm in order of input) to which the cell ii belongs.

Note that all aia_i equal to 11 should form a contiguous subsegment of the array aa of length c1c_1 , all aia_i equal to 22 should form a contiguous subsegment of the array aa of length c2c_2 , ..., all aia_i equal to mm should form a contiguous subsegment of the array aa of length cmc_m . The leftmost position of 22 in aa should be greater than the rightmost position of 11 , the leftmost position of 33 in aa should be greater than the rightmost position of 22 , ..., the leftmost position of mm in aa should be greater than the rightmost position of m1m-1 .

See example outputs for better understanding.

输入输出样例

  • 输入#1

    7 3 2
    1 2 1
    

    输出#1

    YES
    0 1 0 2 2 0 3 
    
  • 输入#2

    10 1 11
    1
    

    输出#2

    YES
    0 0 0 0 0 0 0 0 0 1 
    
  • 输入#3

    10 1 5
    2
    

    输出#3

    YES
    0 0 0 0 1 1 0 0 0 0 
    

说明/提示

Consider the first example: the answer is [0,1,0,2,2,0,3][0, 1, 0, 2, 2, 0, 3] . The sequence of jumps you perform is 0245780 \rightarrow 2 \rightarrow 4 \rightarrow 5 \rightarrow 7 \rightarrow 8 .

Consider the second example: it does not matter how to place the platform because you always can jump from 00 to 1111 .

Consider the third example: the answer is [0,0,0,0,1,1,0,0,0,0][0, 0, 0, 0, 1, 1, 0, 0, 0, 0] . The sequence of jumps you perform is 056110 \rightarrow 5 \rightarrow 6 \rightarrow 11 .

首页