- #include<bits/stdc++.h>
- using namespace std;
- int d1[10][10],d2[10][10],o[10];
- int r,c,m;
- int main()
- {
- cin.tie(0);
- cin.sync_with_stdio(0);
- cin>>r>>c>>m;
- for(int i=0;i<r;i++)
- {
- for(int j=0;j<c;j++)
- {
- cin>>d1[i][j];
- }
- }
- for(int i=0;i<m;i++)
- {
- cin>>o[i];
- }
- for(int k=m-1;k>=0;k--)
- {
- if(o[k]==1)
- {
- for(int i=0;i<r;i++)
- {
- for(int j=0;j<c;j++)
- {
- d2[i][j]=d1[r-i-1][j];
- }
- }
- memcpy(d1,d2,sizeof(d2));
- }
- else
- {
- int tmp=r;
- r=c;
- c=tmp;
- for(int i=0;i<r;i++)
- {
- for(int j=0;j<c;j++)
- {
- d2[i][j]=d1[j][r-i-1];
- }
- }
- memcpy(d1,d2,sizeof(d2));
- }
- }
- cout<<r<<" "<<c<<"\n";
- for(int i=0;i<r;i++)
- {
- cout<<d1[i][0];
- for(int j=1;j<c;j++)
- {
- cout<<" "<<d1[i][j];
- }
- cout<<"\n";
- }
- return 0;
- }
複製代碼 |