zoukankan      html  css  js  c++  java
  • Codeforces Round #166 (Div. 2)C. Secret(构造)

    C. Secret
    time limit per test
    2 seconds
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    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.

    Input

    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.

    Output

    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.

    Sample test(s)
    Input
    11 3
    Output
    3 1 2 1 1 2 3 2 2 3 1
    Input
    5 2
    Output
    -1

    如果n<3*k, 无解,因为此时总有至少一个keeper至多拥有2个Words,构成等差数列,不合题意。
    否则,可按以下方法分配n个word给k个keeper,a[i]=j表示第i个word分配给第j个keeper。
    a[1]=a[2]=a[2k+1]=1;
    a[3]=[4]=a[2k+2]=2;
    ...
    a[2k-1]=a[2k]=a[3k]=k;
    如果word有余,则令
    a[3k+1]=a[3k+2]=...=1;

    AC Code:
     1 #include <iostream>
     2 #include <cstdio>
     3 
     4 using namespace std;
     5 
     6 int a[1000002], n, k;
     7 
     8 int main()
     9 {
    10     while(scanf("%d %d", &n, &k) != EOF)
    11     {
    12         if(n < 3*k) puts("-1");
    13         else
    14         {
    15             int i, j;
    16             for(i = 2, j = 1; j <= k; i += 2, j++)
    17                 a[i-1] = a[i] = a[2 * k + i / 2] = j;
    18             for(i = 3 * k + 1; i <= n; i++)
    19                 a[i] = 1;
    20             printf("%d", a[1]);
    21             for(int i = 2; i <= n; i++) printf(" %d", a[i]);
    22             puts("");
    23         }
    24     }
    25     return 0;
    26 }

  • 相关阅读:
    nginx反向代理配置去除前缀
    centos6.x yum源站失效
    Shell if 条件判断
    使用Shell显示脚本使用帮助
    libmysqlclient.so.20 错误问题解决
    linux中ldconfig的使用介绍
    【源码解读】Vue与ASP.NET Core WebAPI的集成
    【Golang】快速复习指南QuickReview(十一)——数据库访问(MySql为例)
    【Golang】快速复习指南QuickReview(十)——goroutine池
    【Golang】快速复习指南QuickReview(九)——socket
  • 原文地址:https://www.cnblogs.com/cszlg/p/2915518.html
Copyright © 2011-2022 走看看