2020牛客多校 G

在这里插入图片描述
题意如图
思路:
判断k是n的因子 k是(n+1)的因子 或者其他情况
把这三种情况枚举即可。

#include<bits/stdc++.h>
using namespace std;
const int N=1e3+15;
typedef long long ll;
int main()
{
    ll t;
    cin>>t;
    while(t--)
    {
        ll n,m,k;
        cin>>n>>k;
        ll op=(n)*(n+1)*2;
        if(op%k!=0)
        {
            cout<<"-1"<<endl;
            continue;
        }
        if(k==1||n==1)
        {
            cout<<"-1"<<endl;
            continue;
        }
        if(n%k==0)
        {
            ll d=n/k;
            for(int i=1;i<=2*n+2;i++)
            {
                int x=(i+1)%2;
                for(int j=1;j<=d;j++)
                {
                    for(int l=1;l<=k;l++)
                    {
                       int y=x+l;   y%=k;   if(y==0)    y=k;
                       cout<<y<<" ";
                    }
                }
                cout<<endl;
            }
            continue;
        }
        if( (n+1)%k==0)
        {
            ll d=n/(k+1);
            for(int i=1;i<=2*n+2;i++)
            {
                for(int j=1;j<=n;j++)
                {
                    int x=(j+1)%2;
                    int y=i%k;  if(y==0)    y=k;
                    x=x+y;  x%=k;   if(x==0)    x=k;
                    cout<<x<<" ";
                }
                cout<<endl;
            }
            continue;
        }
        ll anp=0;
        for(int i=1;i<=2*n+2;i++)
        {
            for(int j=1;j<=n;j++)
            {
                anp++;
                anp%=k;
                if(anp==0)
                    anp=k;
                cout<<anp<<" ";
            }
            cout<<endl;
        }
        continue;
    }
    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值