解题思路:
注意事项:
每次头转之后要改变s的方向
参考代码:
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner input = new Scanner(System.in); int m = input.nextInt(); int n = input.nextInt(); int [][]cell = new int[m][n]; for(int i=0;i<m;i++) { for(int j=0;j<n;j++) { cell[i][j] = input.nextInt(); } } int x = input.nextInt(); int y = input.nextInt(); String s = input.next(); int k = input.nextInt(); for(int i = 0;i < k;i ++) { if(s.equals("U"))//上 { int t = cell[x][y]; if(t==1) { cell[x][y] = 0; y++; s = "R"; }else if(t==0) { cell[x][y] = 1; y--; s = "L"; } }else if(s.equals("D"))//下 { int t = cell[x][y]; if(t==1) { cell[x][y] = 0; y--; s = "L"; }else if(t==0) { cell[x][y] = 1; y++; s = "R"; } }else if(s.equals("L"))//左 { int t = cell[x][y]; if(t==1) { cell[x][y] = 0; x--; s = "U"; }else if(t==0) { cell[x][y] = 1; x++; s = "D"; } }else if(s.equals("R"))//右 { int t = cell[x][y]; if(t==1) { cell[x][y] = 0; x++; s = "D"; }else if(t==0) { cell[x][y] = 1; x--; s = "U"; } } } System.out.println(x+" "+y); } }
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题6.9 (C++代码)浏览:560 |
分糖果 (C++代码)浏览:933 |
校门外的树 (C语言代码)浏览:751 |
C语言训练-计算1977!* (C++代码)浏览:907 |
C语言程序设计教程(第三版)课后习题6.10 (C语言代码)浏览:827 |
C语言程序设计教程(第三版)课后习题6.5 (C语言代码)浏览:782 |
wu-淘淘的名单 (C++代码)浏览:1532 |
【计算两点间的距离】 (C语言代码)浏览:1522 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:490 |
母牛的故事 (C语言代码)浏览:594 |