1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
| #include <iostream> #include <cstring> using namespace std; typedef pair<int,int> P;
int a[1024][1024]; int s;
void divide(P u,P v,int len){ if(len==1) return; int mid=len/2; P np=make_pair(u.first+mid-1,u.second+mid-1); if(v.first<=np.first&&v.second<=np.second){ a[np.first+1][np.second]=a[np.first][np.second+1]=a[np.first+1][np.second+1]=s++; divide(u,v,len/2); divide(P(u.first+mid,u.second),P(np.first+1,np.second),len/2); divide(P(u.first,u.second+mid),P(np.first,np.second+1),len/2); divide(P(u.first+mid,u.second+mid),P(np.first+1,np.second+1),len/2); } if(v.first<=np.first&&v.second>np.second){ a[np.first][np.second]=a[np.first+1][np.second]=a[np.first+1][np.second+1]=s++; divide(u,np,len/2); divide(P(u.first+mid,u.second),P(np.first+1,np.second),len/2); divide(P(u.first,u.second+mid),v,len/2); divide(P(u.first+mid,u.second+mid),P(np.first+1,np.second+1),len/2); } if(v.first>np.first&&v.second<=np.second){ a[np.first][np.second]=a[np.first][np.second+1]=a[np.first+1][np.second+1]=s++; divide(u,np,len/2); divide(P(u.first+mid,u.second),v,len/2); divide(P(u.first,u.second+mid),P(np.first,np.second+1),len/2); divide(P(u.first+mid,u.second+mid),P(np.first+1,np.second+1),len/2); } if(v.first>np.first&&v.second>np.second){ a[np.first][np.second]=a[np.first][np.second+1]=a[np.first+1][np.second]=s++; divide(u,np,len/2); divide(P(u.first+mid,u.second),P(np.first+1,np.second),len/2); divide(P(u.first,u.second+mid),P(np.first,np.second+1),len/2); divide(P(u.first+mid,u.second+mid),v,len/2); } }
int main(){ int k;P start; while(cin>>k>>start.first>>start.second){ memset(a,-1,sizeof(a)); a[start.first][start.second]=0; int len=1; for(int i=0;i<k;i++) len*=2; s=1; divide(P(0,0),start,len); for(int i=0;i<len;i++){ for(int j=0;j<len;j++){ cout << a[i][j] << '\t'; } cout << endl; } } return 0; }
|