A - Maximal Binary Matrix CodeForces - 803A

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 ≤ 1000 ≤ k ≤ 106).

Output

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

Example
Input
2 1
Output
1 0 
0 0 
Input
3 2
Output
1 0 0 
0 1 0 
0 0 0 
Input
2 5
Output

-1

题意:给你个n*n的矩阵,和k个1,问怎样得到一个最大的对称矩阵,从上到下从左到右都最大,就是有1的比是0的大,,,

0 1 1 0

1 0 比 0 1 要小因为第一行前者是0 后者是1,

所以就要从上三角开始填1,而且对称着填

#include <bits/stdc++.h>  
  
using namespace std;  
int n,k;  
int a[105][105];  
int main()  
{  
    while(~scanf("%d%d",&n,&k)){  
        if (k > n*n) {  
            printf("-1\n");  
            continue;  
        }  
        for (int i=0; i<n; i++){  
            for (int j=i; j<n; j++){  
                if (k==0) break;  
                if (i==j){  
                    a[i][j]=1;  
                    k--;  
                }  
                else {  
                    if (k==1) continue;  //说明必须要剩下的这个1 填在对角线上.
                    a[i][j]=a[j][i]=1;  
                    k-=2;  
                }  
            }  
            if (k==0) break;  
        }  
        for (int i=0; i<n; i++){  
            for (int j=0; j<n-1; j++)  
                printf("%d ",a[i][j]);  
            printf("%d\n",a[i][n-1]);  
        }  
    }  
    return 0;  
}  



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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值