华为oj--坐标移动

时间:2022-08-01 18:53:54

开发一个坐标计算工具, A表示向左移动,D表示向右移动,W表示向上移动,S表示向下移动。从(0,0)点开始移动,从输入字符串里面读取一些坐标,并将最终输入结果输出到输出文件里面。

 

输入:

 

合法坐标为A(或者D或者W或者S) + 数字(两位以内)

 

坐标之间以;分隔。

 

非法坐标点需要进行丢弃。如AA10;  A1A;  $%$;  YAD; 等。

 

下面是一个简单的例子 如:

 

A10;S20;W10;D30;X;A1A;B10A11;;A10;

 

处理过程:

 

起点(0,0)

 

+   A10   =  (-10,0)

 

+   S20   =  (-10,-20)

 

+   W10  =  (-10,-10)

 

+   D30  =  (20,-10)

 

+   x    =  无效

 

+   A1A   =  无效

 

+   B10A11   =  无效

 

+  一个空 不影响

 

+   A10  =  (10,-10)

 

 

结果 (10, -10)

import java.util.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class Main{

public static void main(String[] args) {
int x=0;
int y=0;
char direction;
int step;
Scanner scanner=new Scanner(System.in);
String s=scanner.next();
String[] str=s.split(";");
Pattern pattern=Pattern.compile("[WASD]\\d{1,2}");
Matcher matcher;
for(int i=0;i<str.length;i++){
matcher=pattern.matcher(str[i]);
if(matcher.matches()){
direction=str[i].charAt(0);
step=Integer.parseInt(str[i].substring(1));
if(direction=='A')
x=x-step;
if(direction=='D')
x=x+step;
if(direction=='W')
y=y+step;
if(direction=='S')
y=y-step;
}
}
System.out.println(x+","+y);
}
}