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;
    }
    

      

  • 相关阅读:
    phpmailer发送邮件,可以带附件
    poj 3370 鸽笼原理知识小结
    yii_wiki_145_yii-cjuidialog-for-create-new-model (通过CJuiDialog来创建新的Model)
    兄弟单词查询
    asp.net mvc3 利用Ajax实现局部刷新
    eclipse 找不到application选项
    ECharts一个强大的商业产品图表库
    多校训练hdu --Nice boat(线段树,都是泪)
    [外文理解] DDD创始人Eric Vans:要实现DDD原始意图,必须CQRS+Event Sourcing架构。
    ubuntu重新启动网卡
  • 原文地址:https://www.cnblogs.com/a972290869/p/4240946.html
Copyright © 2011-2022 走看看