D. Grid-00100

本文解析了CodeForces竞赛中的一道编程题,题目要求构造一个n×n的矩阵,矩阵元素为0和1,且元素总和为k。文章详细介绍了如何找到满足条件的矩阵,使得特定函数f(A)的值最小,并提供了实现这一目标的C++代码。

链接:https://codeforces.ml/contest/1371/problem/D

A mad scientist Dr.Jubal has made a competitive programming task. Try to solve it!

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

Let's define:

  • Ai,jAi,j as the integer in the ii-th row and the jj-th column.
  • Ri=Ai,1+Ai,2+...+Ai,nRi=Ai,1+Ai,2+...+Ai,n (for all 1≤i≤n1≤i≤n).
  • Cj=A1,j+A2,j+...+An,jCj=A1,j+A2,j+...+An,j (for all 1≤j≤n1≤j≤n).
  • In other words, RiRi are row sums and CjCj are column sums of the grid AA.
  • For the grid AA let's define the value f(A)=(max(R)−min(R))2+(max(C)−min(C))2f(A)=(max(R)−min(R))2+(max(C)−min(C))2 (here for an integer sequence XX we define max(X)max(X) as the maximum value in XX and min(X)min(X) as the minimum value in XX).

Find any grid AA, which satisfies the following condition. Among such grids find any, for which the value f(A)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 tt (1≤t≤1001≤t≤100) — the number of test cases. Next tt lines contain descriptions of test cases.

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

It is guaranteed that the sum of n2n2 for all test cases does not exceed 105105.

Output

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

After that, print nn lines contain nn characters each. The jj-th character in the ii-th line should be equal to Ai,jAi,j.

If there are multiple answers you can print any.

Example

input

Copy

4
2 2
3 8
1 0
4 16

output

Copy

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 22, so the condition is satisfied. R1=1,R2=1R1=1,R2=1 and C1=1,C2=1C1=1,C2=1. Then, f(A)=(1−1)2+(1−1)2=0f(A)=(1−1)2+(1−1)2=0, which is the minimum possible value of f(A)f(A).

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

代码:

#include <bits/stdc++.h>
#define ll long long
using namespace std;
ll t,n,k,r,s,b,m;
ll a[1000][1000];
int main()
{
   cin>>t;
   while(t--)
   {
       cin>>n>>k;
       for(int i=1;i<=n;i++)
       {
            for(int j=1;j<=n;j++)
            {
                a[i][j]=0;
            }
       }
       if(k%n==0)
       s=0;
       else
       s=2;
       cout<<s<<endl;
       m=floor(k*1.0/n);
       b=k%n;
       for(int i=1;i<=n;i++)
       {
           if(i<=b)
           {
               int j=i;
               for(int l=1;l<=m+1;j++,l++)
               {
                   if(j>n)
                    j=1;
                   a[i][j]=1;
               }
           }
           else
           {
               int j=i;
               for(int l=1;l<=m;j++,l++)
               {
                   if(j>n)
                    j=1;
                   a[i][j]=1;
               }
           }
       }
       for(int i=1;i<=n;i++)
       {
           for(int j=1;j<=n;j++)
            cout<<a[i][j];
           cout<<endl;
       }
   }
    return 0;
}

 

<think>题目:下列哪个属性用于定义显式 Grid 布局的列?( ) 选项: A. grid-template-rows B. grid-template-columns C. grid-auto-columns D. grid-auto-rows 解析: 在CSS Grid布局中,网格分为显式网格(Explicit Grid)和隐式网格(Implicit Grid)。 - 显式网格:通过`grid-template-rows`和`grid-template-columns`(或简写属性`grid-template`)显式定义的行和列。 - 隐式网格:当网格项目被放置在显式网格之外时,网格容器会自动生成网格轨道,这些轨道的大小由`grid-auto-rows`和`grid-auto-columns`属性定义。 因此,用于定义显式网格布局的列的属性是`grid-template-columns`,它定义了网格中每一列的宽度。 答案:B. grid-template-columns §§相关问题§§: 1. CSS Grid 布局中 `grid-template-columns` 属性常用的单位有哪些? 2. 如何用 `grid-template-columns` 实现一个响应式网格布局? 3. `grid-auto-columns` 属性在什么情况下会被使用? 4. 如何使用 `grid-template-columns` 和 `grid-template-rows` 创建固定和自适应混合布局? </think>### 正确答案:B. `grid-template-columns` #### 详细解析: 在 CSS Grid 布局中,定义显式网格布局的列应该使用 `grid-template-columns` 属性。以下是各选项的详细对比: | 属性 | 作用对象 | 功能描述 | |----------------------|--------------|--------------------------------------------------------------------------| | **B. grid-template-columns** | 显式网格 | **定义显式网格的列数量和宽度** | | A. grid-template-rows | 显式网格 | 定义显式网格的行数量和高度 | | C. grid-auto-columns | 隐式网格 | 定义浏览器自动生成的隐式网格列宽度 | | D. grid-auto-rows | 隐式网格 | 定义浏览器自动生成的隐式网格行高度 | #### 关键概念解析: 1. **显式网格 (Explicit Grid)**: - 开发者通过代码明确定义的网格结构 - 使用 `grid-template-*` 系列属性控制 - 示例代码: ```css .container { display: grid; /* 显式定义 3 列 */ grid-template-columns: 100px 1fr 2fr; /* 显式定义 2 行 */ grid-template-rows: 80px auto; } ``` 2. **隐式网格 (Implicit Grid)**: - 当网格项目超出显式网格范围时自动创建 - 使用 `grid-auto-*` 系列属性控制 - 示例场景: ```css .container { grid-template-columns: repeat(2, 1fr); /* 显式定义 2 列 */ grid-auto-columns: minmax(120px, auto); /* 隐式列宽度规则 */ } ``` #### 实际应用示例: 创建响应式布局: ```css .container { display: grid; /* 显式列定义:3列响应式布局 */ grid-template-columns: [left] minmax(200px, 1fr) [center] 2fr [right] minmax(100px, 1fr); /* 显式行定义 */ grid-template-rows: [header] 80px [content] minmax(300px, auto) [footer] 60px; gap: 15px; } ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值