CF26E.Multithreading

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You are given the following concurrent program. There are NN processes and the ii -th process has the following pseudocode:

repeat $n_{i}$ times<br></br> $y_{i}$ := $y$ <br></br> $y$ := $y_{i}+1$ <br></br>end repeat<br></br>Here yy is a shared variable. Everything else is local for the process. All actions on a given row are atomic, i.e. when the process starts executing a row it is never interrupted. Beyond that all interleavings are possible, i.e. every process that has yet work to do can be granted the rights to execute its next row. In the beginning y=0y=0 . You will be given an integer WW and nin_{i} , for i=1,... ,Ni=1,...\ ,N . Determine if it is possible that after all processes terminate, y=Wy=W , and if it is possible output an arbitrary schedule that will produce this final value.

输入格式

In the first line of the input you will be given two space separated integers NN ( 1<=N<=1001<=N<=100 ) and WW ( 109<=W<=109-10^{9}<=W<=10^{9} ). In the second line there are NN space separated integers nin_{i} ( 1<=ni<=10001<=n_{i}<=1000 ).

输出格式

On the first line of the output write Yes if it is possible that at the end y=Wy=W , or No otherwise. If the answer is No then there is no second line, but if the answer is Yes, then on the second line output a space separated list of integers representing some schedule that leads to the desired result. For more information see note.

输入输出样例

  • 输入#1

    1 10
    11
    

    输出#1

    No
    
  • 输入#2

    2 3
    4 4
    

    输出#2

    Yes
    1 1 2 1 2 2 2 2 2 1 2 1 1 1 1 2
    
  • 输入#3

    3 6
    1 2 3
    

    输出#3

    Yes
    1 1 2 2 2 2 3 3 3 3 3 3
    

说明/提示

For simplicity, assume that there is no repeat statement in the code of the processes, but the code from the loop is written the correct amount of times. The processes are numbered starting from 1. The list of integers represent which process works on its next instruction at a given step. For example, consider the schedule 1 2 2 1 3. First process 1 executes its first instruction, then process 2 executes its first two instructions, after that process 1 executes its second instruction, and finally process 3 executes its first instruction. The list must consists of exactly 2Σ i=1...Nni2·Σ\ _{i=1...N}n_{i} numbers.

首页