zoukankan      html  css  js  c++  java
  • (构造)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;
    }
    

      

  • 相关阅读:
    [BZOJ3884] 上帝与集合的正确用法
    [BZOJ3518] 点组计数
    [BZOJ3601] 一个人的数论
    [BZOJ3529] [Sdoi2014]数表
    原生js实现无缝滚动轮播图-点击页码即刻显示该页码的内容
    原生js实现无缝滚动轮播图
    vue封装tinymce富文本组件,图片上传回调方法
    vue-cli项目结合Element-ui基于cropper.js封装vue图片裁剪组件
    js实现多文件上传(二)-- 拖拽上传
    js实现多文件上传(一)-- 图片转base64回显
  • 原文地址:https://www.cnblogs.com/a972290869/p/4240946.html
Copyright © 2011-2022 走看看