解题思路:
注意事项:
参考代码:
#include <iostream>
#include <cstring>
using namespace std;
int main() {
int k;
cin >> k;
while (k--) {
int n, m, sx, sy, ex, ey;
char cc[100][100];
memset(cc, '0', sizeof(cc));
cin >> n;
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= n; j++) {
scanf(" %c ", &cc[i][j]);
if (cc[i][j] == 'S') {
sx = i;
sy = j;
}
if (cc[i][j] == 'T') {
ex = i;
ey = j;
}
}
}
cin >> m;
while (m--) {
int nowx = sx, nowy = sy, flag = 0;
string s;
cin >> s;
for (int i = 0; i < s.length(); i++) {
if (s[i] == 'R') nowy++;
if (s[i] == 'L') nowy--;
if (s[i] == 'U') nowx--;
if (s[i] == 'D') nowx++;
if (cc[nowx][nowy] == '#') {
flag = 1;
cout << "I am dizzy!\n";
break;
} else if (cc[nowx][nowy] == '0') {
flag = 1;
cout << "I am out!\n";
break;
} else if (cc[nowx][nowy] == 'T') {
flag = 1;
cout << "I get there!\n";
break;
}
}
if (flag == 0)
cout << "I have no idea!\n";
}
}
return 0;
}
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:674 |
【亲和数】 (C语言代码)浏览:908 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:584 |
WU-拆分位数 (C++代码)浏览:819 |
2006年春浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:503 |
DNA (C语言代码)浏览:837 |
链表数据求和操作 (C语言代码)浏览:1035 |
C语言程序设计教程(第三版)课后习题10.5 (C语言代码)浏览:985 |
C语言程序设计教程(第三版)课后习题5.8 (C语言代码)浏览:692 |
青年歌手大奖赛_评委会打分 (C语言代码)浏览:2248 |