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仍在学习编码:)
答案 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
的位置相同,则满足此条件。如果他们共享相同的对角线,那么他们会看到彼此,因为他们可以作为主教来移动。如果轴之间的差相等,则满足此条件。示例:
[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");
}
}