CodeForces 417E Square Table【随机数】

Description

While resting on the ship after the "Russian Code Cup" a boy named Misha invented an interesting game. He promised to give his quadrocopter to whoever will be the first one to make a rectangular table of size n × m, consisting of positive integers such that the sum of the squares of numbers for each row and each column was also a square.

Since checking the correctness of the table manually is difficult, Misha asks you to make each number in the table to not exceed 108.

Input

The first line contains two integers n and m (1 ≤ n, m ≤ 100)  — the size of the table.

Output

Print the table that meets the condition: n lines containing m integers, separated by spaces. If there are multiple possible answers, you are allowed to print anyone. It is guaranteed that there exists at least one correct answer.

Sample Input

Input
1 1
Output
1
Input
1 2
Output
3 4

毫无算法可言==rand()函数是个好东西==

#include <iostream>
#include <cstdio>
#include <cmath>
#include <cstdlib>
#include<cstring>
using namespace std;
bool num[1000003];
int main()
{
    //freopen("cin.txt","r",stdin);
    int n,m;
    memset(num,0,sizeof(num));
    for(int i=0;i<=1000;i++) num[i*i]=1;
    while(~scanf("%d%d",&n,&m)){
        int a,b,c,d;
        while(true){
            a=rand()%100+1;
            b=rand()%100+1;
            c=rand()%100+1;
            d=rand()%100+1;
            int s1=(m-1)*a*a+b*b;
            int s2=(n-1)*a*a+c*c;
            int s3=(m-1)*c*c+d*d;
            int s4=(n-1)*b*b+d*d;
            if(num[s1]&&num[s2]&&num[s3]&&num[s4]) break;
        }
        for(int i=0;i<n-1;i++){
            for(int j=0;j<m-1;j++) printf("%d ",a);
            printf("%d\n",b);
        }
        for(int j=0;j<m-1;j++) printf("%d ",c);
        printf("%d\n",d);
    }
    return 0;
}


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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值