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

      

  • 相关阅读:
    22.112.leetcode_path_sum
    21.leetcode111_minimum_depth_of_binary_tree
    20.leetcode110_balanced_binary_tree
    19.leetcode108_convert_sorted_array_to_binary_search_tree
    论文阅读 | RoBERTa: A Robustly Optimized BERT Pretraining Approach
    CheckList:ACL 2020 Best Paper
    激活函数综述
    盘点深度学习中的损失函数
    逻辑回归
    机器学习之参数估计
  • 原文地址:https://www.cnblogs.com/a972290869/p/4240946.html
Copyright © 2011-2022 走看看