CF271C.Secret
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
The Greatest Secret Ever consists of n words, indexed by positive integers from 1 to n . The secret needs dividing between k Keepers (let's index them by positive integers from 1 to k ), the i -th Keeper gets a non-empty set of words with numbers from the set Ui=(ui,1,ui,2,...,ui,∣Ui∣) . Here and below we'll presuppose that the set elements are written in the increasing order.
We'll say that the secret is safe if the following conditions are hold:
- for any two indexes i,j ( 1<=i<j<=k ) the intersection of sets Ui and Uj is an empty set;
- the union of sets U1,U2,...,Uk is set (1,2,...,n) ;
- in each set Ui , its elements ui,1,ui,2,...,ui,∣Ui∣ do not form an arithmetic progression (in particular, ∣Ui∣>=3 should hold).
Let us remind you that the elements of set (u1,u2,...,us) form an arithmetic progression if there is such number d , that for all i ( 1<=i<s ) fulfills ui+d=ui+1 . For example, the elements of sets (5) , (1,10) and (1,5,9) form arithmetic progressions and the elements of sets (1,2,4) and (3,6,8) don't.
Your task is to find any partition of the set of words into subsets U1,U2,...,Uk so that the secret is safe. Otherwise indicate that there's no such partition.
输入格式
The input consists of a single line which contains two integers n and k ( 2<=k<=n<=106 ) — the number of words in the secret and the number of the Keepers. The numbers are separated by a single space.
输出格式
If there is no way to keep the secret safe, print a single integer "-1" (without the quotes). Otherwise, print n integers, the i -th of them representing the number of the Keeper who's got the i -th word of the secret.
If there are multiple solutions, print any of them.
输入输出样例
输入#1
11 3
输出#1
3 1 2 1 1 2 3 2 2 3 1
输入#2
5 2
输出#2
-1