解题思路:
注意事项:
参考代码:
#include <bits/stdc++.h> using namespace std; int main(){ int n,m; int maze[500][500]; int x,y,step; string dir; cin>>n>>m; for(int i=0;i<n;i++){ for(int j=0;j<m;j++){ cin>>maze[i][j]; } } cin>>x>>y>>dir>>step; set<string>st;//四个方向来表示头的朝向上下左右 // mp["U"]=0; // mp["D"]=0; // mp["L"]=0; // mp["R"]=0; st.insert(dir); //若蚂蚁在黑格,右转90度,将该格改为白格,并向前移一格; //若蚂蚁在白格,左转90度,将该格改为黑格,并向前移一格。 while(step--){ if(maze[x][y]==0){ //0代表白格子 maze[x][y]=1; //1代表黑格子 if(st.count("L")){ x++;//前进 st.erase("L"); st.insert("D"); }else if(st.count("R")){ x--; st.erase("R"); st.insert("U"); }else if(st.count("U")){ y--; st.erase("U"); st.insert("L"); }else if(st.count("D")){ y++; st.erase("D"); st.insert("R"); } }else{ maze[x][y]=0; if(st.count("L")){ x--;//前进 st.erase("L"); st.insert("U"); }else if(st.count("R")){ x++; st.erase("R"); st.insert("D"); }else if(st.count("U")){ y++; st.erase("U"); st.insert("R"); }else if(st.count("D")){ y--; st.erase("D"); st.insert("L"); } } } cout<<x<<" "<<y<<endl; return 0; }
0.0分
0 人评分
C语言训练-谁家孩子跑最慢* (C语言代码)浏览:1544 |
点我有惊喜!你懂得!浏览:1392 |
C语言考试练习题_排列 (C语言代码)浏览:767 |
2003年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:793 |
A+B for Input-Output Practice (II) (C语言代码)浏览:1043 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:593 |
简单的a+b (C语言代码)浏览:661 |
C语言程序设计教程(第三版)课后习题9.10 (C语言代码)浏览:583 |
【明明的随机数】 (C语言代码)浏览:845 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:645 |