Zerojudge b965

Zerojudge b965

題敘

https://zerojudge.tw/ShowProblem?problemid=b965
給定一個矩陣經過多次 旋轉/翻轉 後的樣子,求原矩陣

想法

將操作反著做回來即可

Code

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
//By Koios1143
#include<bits/stdc++.h>
#define LL long long
#define IOS ios::sync_with_stdio(false),cin.tie(0),cout.tie(0);
#define pii pair<int,int>
using namespace std;
int r,c,m,arr[10][10],tmp[10][10];
void cycle(){
memset(tmp,0,sizeof(tmp));
swap(r,c);
for(int i=0 ; i<r ; i++){
for(int j=0 ; j<c ; j++){
tmp[i][j] = arr[j][r-i-1];
}
}
swap(arr,tmp);
}
void flip(){
for(int i=r-1,j=0 ; i>j ; i--,j++){
for(int k=0 ; k<c ; k++){
swap(arr[i][k],arr[j][k]);
}
}
}
void print_arr(){
for(int i=0 ; i<r ; i++){
for(int j=0 ; j<c ; j++){
if(j)
cout<<' ';
cout<<arr[i][j];
}
cout<<"\n";
}
}
int main(){
IOS
while(cin>>r>>c>>m){
memset(arr,0,sizeof(arr));
for(int i=0 ; i<r ; i++){
for(int j=0 ; j<c ; j++){
cin>>arr[i][j];
}
}
stack<int> s;
for(int i=0,tmp ; i<m ; i++){
cin>>tmp;
s.push(tmp);
}
while(!s.empty()){
int now=s.top();
if(now==0)
cycle();
else
flip();
s.pop();
}
cout<<r<<" "<<c<<"\n";
print_arr();
}
return 0;
}

複雜度

翻轉複雜度為 $O(rc)$
旋轉複雜度為 $O(rc)$
單筆測資複雜度為 $O(mrc)$