使用国际象棋棋盘的2个输入坐标,确定它们是否越过彼此的路径(使用国际象棋游戏的皇后动作)

时间:2018-08-29 07:49:37

标签: java arrays chess

class Board 
{
     public static void main(String args[]) 
    {

        int i, j;
        int x1 = 0, y1 = 0;
        int x2 = 0, y2 = 0;
        int[][] board = new int[8][8];

        x1 = Integer.parseInt(args[0]); 
        y1 = Integer.parseInt(args[1]); 
        x2 = Integer.parseInt(args[2]); 
        y2 = Integer.parseInt(args[3]); 


        // initialize the board to 0's
        for (i = 0; i < 8; i++)
            for (j = 0; j < 8; j++)
                board[i][j] = 0;

        board[x1][y1] = 1;      
        board[x2][y2] = 1;      

        for (i = 0; i < 8; i++) 
        {
            for (j = 0; j < 8; j++) 
            {
                System.out.print(board[i][j]+" ");
            }
            System.out.println();
        }   

    }
}

这是我唯一能做的就是用0和1印刷电路板

板子:

0 0 0 0 0 0 0 0
0 1 0 0 0 0 0 0
0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 1

我的目标是编码并确定2个皇后(即两个1)是否会相互交叉。

我尝试了很多方法,但是其中一些方法无效。 如果您能帮助我,我会非常感激:)

P.S仍在学习编码:)

2 个答案:

答案 0 :(得分:0)

欢迎使用StackOverflow:)

这是您要寻找的东西:

public static boolean twoQueensSeeEachOther(int x1, int y1, int x2, int y2) {
    if (x1 == x2 || y1 == y2) {
        return true;                                // One has picked another
    }
    if (x1 == x2 || y1 == y2) {
        return true;                                // Row or column
    }
    if (Math.abs(x1 - x2) == Math.abs(y1 - y2)) {
        return true;                                // Diagonal
    }
    return false;
}

在两个皇后之间可以看到以下条件:

  • 如果两个人都在同一个地方,那就选另一个
  • 如果它们共享相同的轴(x或y),则它们会彼此看见,因为它们可以像车子一样移动。如果xy的位置相同,则满足此条件。
  • 如果他们共享相同的对角线,那么他们会看到彼此,因为他们可以作为主教来移动。如果轴之间的差相等,则满足此条件。示例:

    • 位置为[2,5]的黑人皇后,位置为[4,3]的白人皇后。
    • x轴之间的差是xDiff = abs(2 - 4) = 2
    • y轴之间的差是yDiff = abs(5 - 3) = 2
    • 两者之间的差异是相等的-他们在对角线上看到彼此。

答案 1 :(得分:0)

import java.util.Scanner;
class Main {

public static void main(String[] args){
    Scanner scanner = new Scanner(System.in);
        int x1 = scanner.nextByte();
        int y1 = scanner.nextByte();
        int x2 = scanner.nextByte();
        int y2 = scanner.nextByte();
        boolean sameRow = y1 == y2;
        boolean sameColumn = x1 == x2;
        boolean canAttack;

        if (sameRow || sameColumn) {
            canAttack = true;
        } else {
            canAttack = Math.abs(x1 - x2) == Math.abs(y1 - y2);
        }
        System.out.println(canAttack ? "YES" : "NO");

}
}