CF459C.Pashmak and Buses
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
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.
输入格式
The first line of input contains three space-separated integers n,k,d (1<=n,d<=1000; 1<=k<=109) .
输出格式
If there is no valid arrangement just print -1. Otherwise print d lines, in each of them print n integers. The j -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 .
输入输出样例
输入#1
3 2 2
输出#1
1 1 2 1 2 1
输入#2
3 2 1
输出#2
-1
说明/提示
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.