Codeforces Round #654 (Div. 2) D. Grid-00100

D. Grid-00100
time limit per test1 second
memory limit per test256 megabytes
inputstandard input
outputstandard output
A mad scientist Dr.Jubal has made a competitive programming task. Try to solve it!

You are given integers n,k. Construct a grid A with size n×n consisting of integers 0 and 1. The very important condition should be satisfied: the sum of all elements in the grid is exactly k. In other words, the number of 1 in the grid is equal to k.

Let’s define:

Ai,j as the integer in the i-th row and the j-th column.
Ri=Ai,1+Ai,2+…+Ai,n (for all 1≤i≤n).
Cj=A1,j+A2,j+…+An,j (for all 1≤j≤n).
In other words, Ri are row sums and Cj are column sums of the grid A.
For the grid A let’s define the value f(A)=(max®−min®)2+(max©−min©)2 (here for an integer sequence X we define max(X) as the maximum value in X and min(X) as the minimum value in X).
Find any grid A, which satisfies the following condition. Among such grids find any, for which the value f(A) is the minimum possible. Among such tables, you can find any.

Input
The input consists of multiple test cases. The first line contains a single integer t (1≤t≤100) — the number of test cases. Next t lines contain descriptions of test cases.

For each test case the only line contains two integers n, k (1≤n≤300,0≤k≤n2).

It is guaranteed that the sum of n2 for all test cases does not exceed 105.

Output
For each test case, firstly print the minimum possible value of f(A) among all tables, for which the condition is satisfied.

After that, print n lines contain n characters each. The j-th character in the i-th line should be equal to Ai,j.

If there are multiple answers you can print any.

Example
inputCopy
4
2 2
3 8
1 0
4 16
outputCopy
0
10
01
2
111
111
101
0
0
0
1111
1111
1111
1111
Note
In the first test case, the sum of all elements in the grid is equal to 2, so the condition is satisfied. R1=1,R2=1 and C1=1,C2=1. Then, f(A)=(1−1)2+(1−1)2=0, which is the minimum possible value of f(A).

In the second test case, the sum of all elements in the grid is equal to 8, so the condition is satisfied. R1=3,R2=3,R3=2 and C1=3,C2=2,C3=3. Then, f(A)=(3−2)2+(3−2)2=2. It can be proven, that it is the minimum possible value of f(A).

ll t;
int n,k;
int main() {
    ll t=read();
    while (t--) {
        cin>>n>>k;
        int a[n][n];
        if(k%n==0)
            cout<<0<<endl;
        else
            cout<<2<<endl;
        int p=0;
        for(int i=0; i<n; i++) {
            for(int j=0; j<n; j++) {
                if(p==k)
                    break;
                a[(i+j)%n][j]=1;
                p++;
            }
            if(p==k)
                break;
        }
        for(int i=0; i<n; i++) {
            for(int j=0; j<n; j++)
                cout<<a[i][j];
            cout<<endl;
        }
    }
    return 0;
}

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值