• (构造)cf 459C


    C. Pashmak and Buses
    time limit per test
    1 second
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    Recently Pashmak has been employed in a transportation company. The company has k buses and has a contract with a school which has n students. The school planned to take the students to d different places for d days (each day in one place). Each day the company provides all the buses for the trip. Pashmak has to arrange the students in the buses. He wants to arrange the students in a way that no two students become close friends. In his ridiculous idea, two students will become close friends if and only if they are in the same buses for all d days.

    Please help Pashmak with his weird idea. Assume that each bus has an unlimited capacity.

    Input

    The first line of input contains three space-separated integers n, k, d (1 ≤ n, d ≤ 1000; 1 ≤ k ≤ 109).

    Output

    If there is no valid arrangement just print -1. Otherwise print d lines, in each of them print n integers. Thej-th integer of the i-th line shows which bus the j-th student has to take on the i-th day. You can assume that the buses are numbered from 1 to k.

    Sample test(s)
    input
    3 2 2
    output
    1 1 2 
    1 2 1
    input
    3 2 1
    output
    -1
    Note

    Note that two students become close friends only if they share a bus each day. But the bus they share can differ from day to day.

    #include<iostream>
    #include<cstdio>
    #include<cstring>
    #include<string>
    #include<cmath>
    #include<cstdlib>
    #include<algorithm>
    using namespace std;
    #define LL long long
    int n,d,a[1010],b[1010][1010];
    LL k;
    int main()
    {
         scanf("%d%I64d%d",&n,&k,&d);
         int x=1;
         for(int i=0;i<d&&x<n;i++)
                x=x*k;
         if(x<n)
                printf("-1
    ");
         else
         {
               for(int i=0;i<n;i++)
                      a[i]=i;
               for(int i=0;i<d;i++)
               {
                     for(int j=0;j<n;j++)
                     {
                           b[i][j]=a[j]%k+1;
                           a[j]=a[j]/k;
                     }
               }
               for(int i=0;i<d;i++)
               {
                     for(int j=0;j<n-1;j++)
                            printf("%d ",b[i][j]);
                     printf("%d
    ",b[i][n-1]);
               }
         }
         return 0;
    }
    

      

  • 相关阅读:
    redis+Keepalived实现Redis主从复制
    Python基础之【第一篇】
    Django之常用命令以及问题汇总
    Django之ORM数据库
    牛掰的python与unix
    Django配置Bootstrap, js
    Django基础教程
    Django安装
    前端学习之jQuery
    centos7安装python3 以及tab补全功能
  • 原文地址:https://www.cnblogs.com/a972290869/p/4240946.html
Copyright © 2020-2023  润新知