旋转矩阵


       题目链接: https://www.nowcoder.com/acm/contest/90/G

       模拟。


AC代码:

#include 
using namespace std;
int n,m,T;
char MAP[35][35];
char str[1005];

void Case1(){    // 上
  printf("%d %d\n",n,m);
  for(int i=0;i=0;i--){
    for(int j=0;j=0;i--){
    for(int j=m-1;j>=0;j--){
      printf("%c",MAP[i][j]);
    }
    printf("\n");
  }
  return ;
}

void Case4(){     // 右
  printf("%d %d\n",m,n);
  for(int i=0;i=0;j--){
      if(MAP[j][i] == '|')
      printf("-");
      else if(MAP[j][i] == '-')
      printf("|");
      else printf("%c",MAP[j][i]);
    }
    printf("\n");
  }
  return ;
}

int main()
{
  scanf("%d",&T);
  while(T--){
    scanf("%d%d",&n,&m);
    for(int i=0;i num2){
      int temp = num1 - num2;
      if(temp % 4 == 0)Case1();
      if(temp % 4 == 1)Case2();
      if(temp % 4 == 2)Case3();
      if(temp % 4 == 3)Case4();
    }
    if(num1 < num2){
      int temp = num2 - num1;
      if(temp % 4 == 0)Case1();
      if(temp % 4 == 1)Case4();
      if(temp % 4 == 2)Case3();
      if(temp % 4 == 3)Case2();
    }
    if(num1 == num2)Case1();
    printf("\n");
  }
  return 0;
}



你可能感兴趣的:(旋转矩阵)