G

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

来源:牛客网

有一天,景驰公司的工程师在真车上做测试。

景驰公司的试验车上面有一个奇怪的图案,这是一个n*m的矩阵,这辆车可以到处开,每次可以左旋右旋,小明想知道转完之后的图案是怎么样的
具体来说:有一个n*m的字符矩阵,只包含3种字符(‘+’‘-’,‘|’),通过一通乱旋之后变成什么样子?

输入描述:

第一行测试样例数T(0<T<=100)
每个测试样例第一行两个正整数n,m(0<n,m<=30)
接下来的n行是一个n*m的字符矩阵
字符矩阵之后是一串只包含‘L’(左旋)和‘R’(右旋)的字符串,长度不超过1000
每个样例间输出一个空行

输出描述:

第一行两个正整数n,m
接下来的n行是一个n*m的字符矩阵
每个样例后面输出一个空行
示例1

输入

2
2 3
+-+
|+|
LLRRR

3 2
-+
+|
-+
LLL

输出

3 2
-+
+|
-+

2 3
|+|
+-+

备注:

左旋即逆时针旋转,右旋即顺时针旋转
-通过一次左旋或右旋会变成|
|通过一次左旋或右旋会变成-
#include <iostream>
using namespace std;
const int maxn = 35;

char c[maxn][maxn];
char op[maxn*maxn];

void output(int res,int n,int m)
{
	if(res == 0)
		for(int i = 0; i < n; i++)
		{
			for(int j = 0; j < m; j++)
				printf("%c",c[i][j]);
			printf("\n");
		}
	else if(res == 1)
		for(int j = 0; j < m; j++)
		{
			for(int i = n-1; i >= 0; i--)
				if(c[i][j] == '-')
					printf("|");
				else if(c[i][j] == '|')
					printf("-");
				else
					printf("%c",c[i][j]);
			printf("\n");
		}
	else if(res == 2)
		for(int i = n-1; i >= 0; i--)
		{
			for(int j = m-1; j >= 0; j--)
				printf("%c",c[i][j]);
			printf("\n");
		}
	else if(res == 3)
		for(int j = m-1; j >= 0; j--)
		{
			for(int i = 0; i < n; i++)
				if(c[i][j] == '-')
					printf("|");
				else if(c[i][j] == '|')
					printf("-");
				else
					printf("%c",c[i][j]);
			printf("\n");
		}
}

int main()
{
    int T;
    cin>>T;
    int n,m;
    while(T--)
    {
        int res = 0;
        cin>>n>>m;
        for(int i = 0; i < n; i++)
            for(int j = 0; j < m; j++)
                cin>>c[i][j];
        /*for(int i = 0; i < n; i++)
        {
        	for(int j = 0; j < m; j++)
                cout<<c[i][j];
            cout<<endl;
		}*/    
        scanf("%s",op);
        for(int i = 0; op[i] != '\0'; i++)
		    if(op[i] == 'L')        res = (res - 1 + 4) % 4;
            else if(op[i] == 'R')   res = (res + 1) % 4;
		//向左旋转-1,向右旋转+1;
		//0,1,2,3代表 原朝向,右朝向,下朝向和左朝向;
		if(res % 2 == 0)
			cout<<n<<" "<<m<<endl;
		else
			cout<<m<<" "<<n<<endl;
        output(res,n,m);
        cout<<endl;
    }
    
    return 0;
} 

/*
2
4 5
+-+-+
|+-|+
-|-+|
+-+||
LLLLRRRRLLRRL

4 5
+-+|+
+-|+-
+-||+
+|++-
LLLLRRRRLLRRL
*/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值