import java.util.*; import java.util.Scanner; // 注意类名必须为 Main, 不要有任何 package xxx 信息 public class Main { // 状态类,记录当前 X、Y 和操作步数 static class State { int x, y, step; State(int x, int y, int step) { this.x = x; this.y = y; this.step = step; } } public static int minSteps(int X, int Y) { Queue<State&g...