E - K Different Values Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 800800

問題文

長さ NN の整数列 A=(A1,A2,,AN)A=(A_1,A_2,\cdots,A_N),及び整数 KK が与えられます.

以下の条件を両方満たす整数列 xx を作ることを考えます.

  • 各整数 ii (1iN1 \leq i \leq N) について,xx はちょうど AiA_i 個の ii を含む. また逆に,それ以外の整数を含まない.
  • xx の中で連続するどの KK 個を見ても,その KK 個の値はすべて異なる.

条件を満たす xx を作ることが可能かどうか判定し,可能な場合は条件を満たす中で辞書順最小の xx を求めてください.

制約

  • 2KN5002 \leq K \leq N \leq 500
  • 1Ai1 \leq A_i
  • 1iNAi200000\sum_{1 \leq i \leq N} A_i \leq 200000
  • 入力される値はすべて整数である

入力

入力は以下の形式で標準入力から与えられる.

NN KK
A1A_1 A2A_2 \cdots ANA_N

出力

条件を満たす数列 xx が作ることが不可能な場合,-1 と出力せよ. 可能な場合,辞書順最小の xx を出力せよ.


入力例 1Copy

Copy
3 3
2 2 1

出力例 1Copy

Copy
1 2 3 1 2

x=(1,2,3,1,2),(2,1,3,2,1)x=(1,2,3,1,2),(2,1,3,2,1) の二つが条件を満たし,その中で辞書順最小の (1,2,3,1,2)(1,2,3,1,2) が答えになります.


入力例 2Copy

Copy
3 2
2 1 2

出力例 2Copy

Copy
1 2 3 1 3

入力例 3Copy

Copy
3 3
1 3 3

出力例 3Copy

Copy
-1

Score : 800800 points

Problem Statement

Given are a sequence of NN integers A=(A1,A2,,AN)A=(A_1,A_2,\cdots,A_N) and an integer KK.

Consider making a sequence of integers xx that satisfies both of the following conditions.

  • For each integer ii (1iN1 \leq i \leq N), xx contains exactly AiA_i occurrences of ii. xx does not contain other integers.
  • For every way of choosing KK consecutive elements from xx, their values are all distinct.

Determine whether it is possible to make xx that satisfies the conditions. If it is possible, find the lexicographically smallest such xx.

Constraints

  • 2KN5002 \leq K \leq N \leq 500
  • 1Ai1 \leq A_i
  • 1iNAi200000\sum_{1 \leq i \leq N} A_i \leq 200000
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

NN KK
A1A_1 A2A_2 \cdots ANA_N

Output

If it is impossible to make a sequence xx that satisfies the conditions, print -1. If it is possible, print the lexicographically smallest such xx.


Sample Input 1Copy

Copy
3 3
2 2 1

Sample Output 1Copy

Copy
1 2 3 1 2

Two sequences x=(1,2,3,1,2),(2,1,3,2,1)x=(1,2,3,1,2),(2,1,3,2,1) satisfy the conditions. The lexicographically smaller one, (1,2,3,1,2)(1,2,3,1,2), is the answer.


Sample Input 2Copy

Copy
3 2
2 1 2

Sample Output 2Copy

Copy
1 2 3 1 3

Sample Input 3Copy

Copy
3 3
1 3 3

Sample Output 3Copy

Copy
-1


2025-04-05 (Sat)
01:29:45 +00:00