CF 12E Start of the season

E - Start of the season

Crawling in process...Crawling failedTime Limit:2000MS    Memory Limit:262144KB   64bit IO Format:%I64d & %I64u

Description

Before the start of the football season in Berland a strange magic ritual is held. The most experienced magicians have to find a magic matrix of the sizen × n (n is even number). Gods will never allow to start the championship without it. Matrix should contain integers from0 ton - 1, main diagonal should contain only zeroes and matrix should be symmetric. Moreover, all numbers in each row should be different. Magicians are very tired of the thinking process, so they ask you to write a program to find such matrix.

Input

<p< p="">

The first line contains one integer n (2 ≤ n ≤ 1000),n is even.

Output

<p< p="">

Output n lines with n numbers each — the required matrix. Separate numbers with spaces. If there are several solutions, output any.

Sample Input

Input
2
Output
0 1
1 0
Input
4
Output
0 1 3 2
1 0 2 3
3 2 0 1
2 3 1 0

很好的想法题,我们的焕神思维很强大,借用一下。

重点是不要把0考虑进去。

假如n=4

我们可以进行全排列

1 2 3

2 3 1

3 1 2

每一行,每一列还缺少一个0,所以我们会得到如下矩阵

1 2 3 0

2 3 1 0

3 1 2 0

0 0 0 0

所以我们直接把主对角线的序列抽出来得到1 3 2 ,分别填充到最后一行和最后一列就会得到满足题意的如下矩阵

0 2 3 1

2 0 1 3

3 1 0 2

1 3 2 0

代码如下:

#include<iostream>
#include<cstdlib>
#include<stdio.h>
#include<map>
#include<algorithm>
#include<string.h>
using namespace std;
int f[1010][1010];
int main()
{
    int n;
    int g[1010];
    while(scanf("%d",&n)!=EOF)
    {
       int num=1;
       for(int i=0;i<n-1;i++)
       {
           int j=0;
           int pi=i;
           while(pi>=0&&j<n-1)
           {
               f[pi][j]=num;
               pi--;j++;
           }
           num++;
           if(num>=n) num=1;
       }


       for(int j=1;j<n-1;j++)
       {
           int pj=j;
           int i=n-2;
           while(i>=0&&pj<n-1)
           {
               f[i][pj]=num;
               i--;pj++;
           }
           num++;
           if(num>=n) num=1;
       }

       for(int i=0;i<n-1;i++)
       g[i]=f[i][i];

      /* for(int i=0;i<n-1;i++)
       for(int j=0;j<n-1;j++)
       {
           cout<<f[i][j]<<" ";
           if(j==n-2)
           cout<<endl;
       }
     */

       for(int i=0;i<n;i++)
       for(int j=0;j<n;j++)
       {
           if(i==j)
           {
               if(j==0)
               cout<<0;
               else cout<<" "<<0;
           }
           else if(i==n-1)
           {
               if(j==0)
               cout<<g[j];
               else
               cout<<" "<<g[j];
           }
           else if(j==n-1)
           {
               cout<<" "<<g[i];
           }
           else
           {
           if(j==0)
           cout<<f[i][j];
           else cout<<" "<<f[i][j];
           }
           if(j==n-1) cout<<endl;

       }
    }
}


 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值