P5461 赦免战俘 - 洛谷 | 计算机科学教育新生态 (luogu.com.cn)
cpp
#include<bits/stdc++.h>
using namespace std;
#define endl '\n'
//#define int long long
const int N = 2e5+10;
int n,p=1,a[1050][1050];
void di(int x,int l,int q)//x是正方形边长,l、q是正方形坐标
{
if(x==2)
{
a[l][q]=0;
return;
}
for(int i=l;i<=l+x/2-1;i++)
{
for(int j=q;j<=q+x/2-1;j++)
{
a[i][j]=0;
}
}
/*
0 0 0 0 0 0 0 1
0 0 0 0 0 0 1 1
0 0 0 0 0 1 0 1
0 0 0 0 1 1 1 1
0 0 0 1 0 0 0 1
0 0 1 1 0 0 1 1
0 1 0 1 0 1 0 1
1 1 1 1 1 1 1 1
*/
di(x/2,l+x/2,q);
di(x/2,l+x/2,q+x/2);
di(x/2,l,q+x/2);
}
main()
{
std::ios::sync_with_stdio(0),cin.tie(0),cout.tie(0);
cin>>n;
for(int i=1;i<=n;i++)
{
p*=2;
}
for(int i=1;i<=p;i++)
{
for(int j=1;j<=p;j++)
{
a[i][j]=1;
}
}
di(p,1,1);
for(int i=1;i<=p;i++)
{
for(int j=1;j<=p;j++)
{
cout<<a[i][j]<<" ";
}
cout<<endl;
}
return 0;
}