codeforces A. Parliament of Berland【水】

来源:互联网 发布:有什么听书软件 编辑:程序博客网 时间:2024/06/06 12:47

网址:

http://codeforces.com/contest/644/problem/A 

A. Parliament of Berland
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

There are n parliamentarians in Berland. They are numbered with integers from 1 to n. It happened that all parliamentarians with odd indices are Democrats and all parliamentarians with even indices are Republicans.

New parliament assembly hall is a rectangle consisting of a × b chairs — a rows of b chairs each. Two chairs are considered neighbouring if they share as side. For example, chair number 5 in row number 2 is neighbouring to chairs number 4 and 6 in this row and chairs with number 5 in rows 1 and 3. Thus, chairs have four neighbours in general, except for the chairs on the border of the hall

We know that if two parliamentarians from one political party (that is two Democrats or two Republicans) seat nearby they spent all time discussing internal party issues.

Write the program that given the number of parliamentarians and the sizes of the hall determine if there is a way to find a seat for any parliamentarian, such that no two members of the same party share neighbouring seats.

Input

The first line of the input contains three integers na and b (1 ≤ n ≤ 10 0001 ≤ a, b ≤ 100) — the number of parliamentarians, the number of rows in the assembly hall and the number of seats in each row, respectively.

Output

If there is no way to assigns seats to parliamentarians in a proper way print -1.

Otherwise print the solution in a lines, each containing b integers. The j-th integer of the i-th line should be equal to the index of parliamentarian occupying this seat, or 0 if this seat should remain empty. If there are multiple possible solution, you may print any of them.

Examples
input
3 2 2
output
0 31 2
input
8 4 3
output
7 8 30 1 46 0 50 2 0
input
10 2 2
output
-1
Note

In the first sample there are many other possible solutions. For example,

3 20 1

and

2 13 0

The following assignment

3 21 0

is incorrect, because parliamentarians 1 and 3 are both from Democrats party but will occupy neighbouring seats.



题意:

给出编号为 1-n 的 n 个人,和a*b 规格的矩形会场,问能否安排一种次序,使得任意两个奇偶性相同的数字都不相邻,如果可以输出符合条件的任何一种方案,否则输出-1


题解:

不难发现,只要能所有人都可以坐下,就肯定能找到符合条件的方案,然后是找出一种方案:


假设:

n=9 a=3 b=3                 


1 2 3

4 5 6

7 8 9

符合要求


如果数据是 n=8 a=2 b=4

那么

1 2 3 4

8 7 6 5

符合要求

然后规律就这样出来了....直接循环打表吧........

规律总结如下:

所有的如果列数是偶数,那么任何相邻的两行的数字的增减性(从左到右)相反,否则相同....


#include<stdio.h>#include<string.h>int n,a,b,map[105][105];void slove(){memset(map,0,sizeof(map));if(n>a*b){printf("-1\n");return;}int cnt=0;for(int i=0;i<a&&cnt<n;i+=2){for(int j=0;j<b&&cnt<n;++j){map[i][j]=++cnt;}if(i+1>=a) {break;}if(b&1){for(int j=0;j<b&&cnt<n;++j){map[i+1][j]=++cnt;}}else{for(int j=b-1;j>=0&&cnt<n;--j){map[i+1][j]=++cnt;}}}for(int i=0;i<a;++i){for(int j=0;j<b-1;++j){printf("%d ",map[i][j]);}printf("%d\n",map[i][b-1]);}}int main(){while(~scanf("%d%d%d",&n,&a,&b)){slove();}return 0;}


0 0
原创粉丝点击