Codeforces Round #261 (Div. 2)C题(思维题)_html/css_WEB-ITnose

php中文网
发布: 2016-06-24 11:59:43
原创
1344人浏览过

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

猫眼课题宝
猫眼课题宝

5分钟定创新选题,3步生成高质量标书!

猫眼课题宝 85
查看详情 猫眼课题宝

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
登录后复制

题意: n个人,k个公交,出去游玩d天,每天每个人可以选择任意一辆公交乘坐,最后要你求每天每个人选择的公交并输出,要求所有的d天中,不能至少有两个人


一直在同一辆公交上


思路:可以将k和d转化成一个d位的k进制数,然后最多能够分配的人数为k的d次方个,比如输入8 2 3,那么对多可以安排8个人,每个人的公交安排分别为


000 , 001 , 010 , 011 , 100 , 101 , 110 , 111,这里0表示搭第1辆公交,1表示搭第2辆公交


纯的思维题啊,好题~~


HTML速学教程(入门课程)
HTML速学教程(入门课程)

HTML怎么学习?HTML怎么入门?HTML在哪学?HTML怎么学才快?不用担心,这里为大家提供了HTML速学教程(入门课程),有需要的小伙伴保存下载就能学习啦!

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号