Educational Codeforces Round 20 a Maximal Binary Matrix

题目链接:http://codeforces.com/contest/803/problem/A

A. Maximal Binary Matrix
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

You are given matrix with n rows and n columns filled with zeroes. You should put k ones in it in such a way that the resulting matrix is symmetrical with respect to the main diagonal (the diagonal that goes from the top left to the bottom right corner) and is lexicographically maximal.

One matrix is lexicographically greater than the other if the first different number in the first different row from the top in the first matrix is greater than the corresponding number in the second one.

If there exists no such matrix then output -1.

Input

The first line consists of two numbers n and k (1 ≤ n ≤ 100, 0 ≤ k ≤ 106).

Output

If the answer exists then output resulting matrix. Otherwise output -1.

Examples
Input
Copy
2 1
Output
Copy
1 0 
0 0 
Input
Copy
3 2
Output
Copy
1 0 0 
0 1 0 
0 0 0 
Input
Copy
2 5
Output
Copy
-1

题面大意:给你一个n阶矩阵,初始化为0,然后让你填入k个1.要求填充之后的矩阵对称,并且从上到下,从左到右的字典序是最大的

思路:

开始判断k与n^2的关系。大于n^2,输出-1.否则二重循环扫描,每到一个点,判断是否为对角线上的点,如果是,那么填充计数器cnt+1,不过不是cnt+2,同时判断此时cnt与k的大小,比k大。那就将下一行的对角线上的元素变为1.然后输出矩阵
#include<stdio.h>
#include<string.h>
#include<iostream>
#include<algorithm>
#define ll long long
using namespace std;
int g[105][105];
int main()
{
    int n,k;
   cin>>n>>k;
   int cnt=1;
   if(k>n*n)
    cout<<-1<<endl;
    else
    {
       for(int i=0;i<n;i++)
       {
           for(int j=i;j<n;j++)
           {
               if(cnt>k)
               {
                   break;
               }
               else
               {
                   if(i==j)
                  {

                     g[i][j]=1;
                     cnt++;
                  }
                  else
                  {
                     // cout<<cnt<<endl;
                   if(cnt+1<=k)
                   {
                       g[i][j]=1;
                       g[j][i]=1;
                       cnt+=2;
                   }
                   else
                   {
                       g[i+1][i+1]=1;
                       cnt++;
                   }
                  }
               }

           }
       }
       for(int i=0;i<n;i++)
       {
           for(int j=0;j<n;j++)
           {
               cout<<g[i][j]<<' ';
           }
           cout<<endl;
       }
    }
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值