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. 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.

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.

题意是有长度为n的序列,然后要在序列中填1到k的数做d次,使得序列中不存在两个位置在d次中都填一样的数。输出一组方案

然后orz了不知名的神犇才会……看样子好像是类似分治的做法……就是尽量n个位置平均分配1到k,然后变成1 2 3 4 5……k 1 2 3 4 5……k的样子,然后倒着做,变成1 1 1 1 1……2 2 2 2 2…… 3 3 3 3 ……的样子

#include<cstdio>
#include<iostream>
#include<cstring>
#include<algorithm>
#include<cstdlib>
using namespace std;
int ans[2333][2333]; int main()
{
int i,j,k,m,n,d,delta,l,r;
scanf("%d%d%d",&n,&k,&d);
delta=1;
for(i=1;i<=d;i++)
{
for(j=1;j<=n;j++)
{
ans[i][j]=1;
}
}
for(i=1;i<=d;i++)
{
delta*=k;
if(delta>=n)
{
for(j=2;j<=n;j++)
{
l=i;
while(ans[l][j-1]==k)
{
l--;
}
for(r=1;r<=l;r++)
{
ans[r][j]=ans[r][j-1];
}
ans[l][j]++;
}
for(i=1;i<=d;i++)
{
for(j=1;j<=n;j++)
{
printf("%d ",ans[i][j]);
}
printf("\n");
}
return 0;
}
}
printf("-1\n");
return 0;
}

最新文章

  1. TestNG 与 Junit的比较
  2. js作用域问题
  3. IE8+兼容经验小结
  4. Makefile编译库
  5. Sublime3 快捷键
  6. LocationManager使用细节
  7. oc弹出框显示提示消息
  8. JVM-并发-线程安全与锁优化
  9. Apache配置代理服务器的方法(1)
  10. Redis基础知识之—— hset 和hsetnx 的区别
  11. OC5_NSFileManger
  12. mac 下 sphinx + mysql + php 实现全文搜索(xampp)(1)
  13. FIO工具常用参数
  14. 向RichTextBox控件不停的AppendText数据时,如何把光标的焦点始终显示到最后
  15. 常用Application Server
  16. wget获取https资源
  17. MicroPython支持的开发板:高性能、低成本创客首选
  18. 【XSY3370】道路建设 最短路
  19. Vue+Element+computed实现购物车
  20. Mysql字段类型与合理选择

热门文章

  1. LeetCode_Interleaving String
  2. HtmlAttribute HTML属性处理类
  3. 【Xamarin挖墙脚系列:Xamarin.IOS的多个Storybord分隔视图的导航】
  4. 对Linux 专家非常有用的20 个命令
  5. Spring-Junit4
  6. iOS获取UIView上某点的颜色值
  7. eclipse安装svn插件,在输入url后,一直卡在in progress界面不懂。
  8. nth-child和nth-of-type的区别
  9. O the joy of having nothing / 아무것도 갖지않고
  10. HDU 1073 - Online Judge