

Time Limit: 2 sec / Memory Limit: 1024 MB
配点 : 点
問題文
長さ の整数列 ,及び整数 が与えられます.
以下の条件を両方満たす整数列 を作ることを考えます.
- 各整数 () について, はちょうど 個の を含む. また逆に,それ以外の整数を含まない.
- の中で連続するどの 個を見ても,その 個の値はすべて異なる.
条件を満たす を作ることが可能かどうか判定し,可能な場合は条件を満たす中で辞書順最小の を求めてください.
制約
- 入力される値はすべて整数である
入力
入力は以下の形式で標準入力から与えられる.
出力
条件を満たす数列 が作ることが不可能な場合,-1
と出力せよ.
可能な場合,辞書順最小の を出力せよ.
入力例 1Copy
3 3 2 2 1
出力例 1Copy
1 2 3 1 2
の二つが条件を満たし,その中で辞書順最小の が答えになります.
入力例 2Copy
3 2 2 1 2
出力例 2Copy
1 2 3 1 3
入力例 3Copy
3 3 1 3 3
出力例 3Copy
-1
Score : points
Problem Statement
Given are a sequence of integers and an integer .
Consider making a sequence of integers that satisfies both of the following conditions.
- For each integer (), contains exactly occurrences of . does not contain other integers.
- For every way of choosing consecutive elements from , their values are all distinct.
Determine whether it is possible to make that satisfies the conditions. If it is possible, find the lexicographically smallest such .
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
If it is impossible to make a sequence that satisfies the conditions, print -1
.
If it is possible, print the lexicographically smallest such .
Sample Input 1Copy
3 3 2 2 1
Sample Output 1Copy
1 2 3 1 2
Two sequences satisfy the conditions. The lexicographically smaller one, , is the answer.
Sample Input 2Copy
3 2 2 1 2
Sample Output 2Copy
1 2 3 1 3
Sample Input 3Copy
3 3 1 3 3
Sample Output 3Copy
-1