C. Not Adjacent Matrix1000 / 构造
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C. Not Adjacent Matrix1000 / 构造相关的知识,希望对你有一定的参考价值。
https://codeforces.com/problemset/problem/1520/C
不让相邻的数挨着。
这样构造即可。
#include<bits/stdc++.h>
using namespace std;
int a[105][105];
int main(void)
{
int t; cin>>t;
while(t--)
{
int n; cin>>n;
if(n!=2)
{
int k=1;
for(int i=0;i<n;i++)
{
for(int j=0;j<n;j++)
{
a[j][(i+j)%n]=k++;
}
}
for(int i=0;i<n;i++)
{
for(int j=0;j<n;j++)
cout<<a[i][j]<<" ";
cout<<endl;
}
}else puts("-1");
}
return 0;
}
以上是关于C. Not Adjacent Matrix1000 / 构造的主要内容,如果未能解决你的问题,请参考以下文章
Educational Codeforces Round 37 (Rated for Div. 2)C. Swap Adjacent Elements
Educational Codeforces Round 40 C. Matrix Walk( 思维)
Codeforces Round #540 (Div. 3) C. Palindromic Matrix 暴力
c_cpp find,find_if,find_if_not,find_first_of,search(查找序列),search_n有助于查找连续序列,adjacent_find