zoukankan      html  css  js  c++  java
  • codeforces 644A Parliament of Berland

    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 2is 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 000, 1 ≤ 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 3
    1 2
    input
    8 4 3
    output
    7 8 3
    0 1 4
    6 0 5
    0 2 0
    input
    10 2 2
    output
    -1
    Note

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

    3 2
    0 1

    and

    2 1
    3 0

    The following assignment

    3 2
    1 0

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

     用1~n   n个数填a*b的矩阵,要求奇数与奇数不相邻,偶数与偶数不相邻,如果a*b<n输出-1

    #include<stdio.h>
    #include<string.h>
    #include<vector>
    #include<map>
    #include<queue>
    #include<stack>
    #include<cstdio> 
    #include<string>
    #include<math.h>
    #include<algorithm>
    #define LL long long
    #define PI atan(1.0)*4
    #define II __int64 
    #define DD double
    #define MAX 10010
    #define mod 10003
    #define INF 0x3f3f3f
    using namespace std;
    int s[110][110];
    int main()
    {
    	int t,n,m,a,b,i,j,k;
    	while(scanf("%d%d%d",&n,&a,&b)!=EOF)
    	{
    		if(a*b<n)
    		{
    			printf("-1
    ");
    			continue;
    		}
    		memset(s,0,sizeof(s));
    		i=1;j=1;k=1;
    		for(i=1;i<=a;i++)
    		{
    			
    			if(i&1)
    			     for(j=1;j<=b;j++)
    			     {
    			     	if(k>n) break;
    			     	s[i][j]=k++;
    			     }		    
    			else
    			    for(j=b;j>=1;j--)
    			    {
    			    	if(k>n) break;
    			    	s[i][j]=k++;
    			    }        
    			if(k>n) break;
    		}
    		for(i=1;i<=a;i++)
    		{
    			for(j=1;j<=b;j++)
    		        printf("%d ",s[i][j]);
    		    printf("
    ");
    		}    
    	} 
    	return 0;
    } 
    

      

  • 相关阅读:
    更换惠普G32笔记本的风扇和硬盘,内存条, 谨记 要做好CPU和显卡的 导热硅脂工作!
    怎么更新 WIN10里的SMBv1协议
    ubuntu-12.04.5-desktop-amd64 安装vmwaretools
    如何解决“ VMware Workstation 不可恢复错误: (vcpu-0) vcpu-0:VERIFY vmcore/vmm/main/cpuid.c:386 bugNr=1036521”
    联想移动硬盘无法访问 解决方法1
    阮一峰 ---开发者手册
    Earth Wind 一个查看全球风向的网站
    Linux帮助用法
    Linux历史命令管理以及用法
    Linux操作练习
  • 原文地址:https://www.cnblogs.com/tonghao/p/5392080.html
Copyright © 2011-2022 走看看