mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-05 07:21:40 +08:00
存量题库数据更新
This commit is contained in:
@@ -1,48 +1,32 @@
|
||||
<p>On an <strong>8x8</strong> chessboard, there can be multiple Black Queens and one White King.</p>
|
||||
|
||||
|
||||
|
||||
<p>Given an array of integer coordinates <code>queens</code> that represents the positions of the Black Queens, and a pair of coordinates <code>king</code> that represent the position of the White King, return the coordinates of all the queens (in any order) that can attack the King.</p>
|
||||
<p> </p>
|
||||
<p><strong>Example 1:</strong></p>
|
||||
|
||||
|
||||
|
||||
<p><img alt="" src="https://assets.leetcode.com/uploads/2019/10/01/untitled-diagram.jpg" style="width: 321px; height: 321px;" /></p>
|
||||
|
||||
|
||||
|
||||
<pre>
|
||||
|
||||
<strong>Input:</strong> queens = [[0,1],[1,0],[4,0],[0,4],[3,3],[2,4]], king = [0,0]
|
||||
|
||||
<strong>Output:</strong> [[0,1],[1,0],[3,3]]
|
||||
|
||||
<strong>Explanation:</strong>
|
||||
|
||||
The queen at [0,1] can attack the king cause they're in the same row.
|
||||
|
||||
The queen at [1,0] can attack the king cause they're in the same column.
|
||||
|
||||
The queen at [3,3] can attack the king cause they're in the same diagnal.
|
||||
|
||||
The queen at [0,4] can't attack the king cause it's blocked by the queen at [0,1].
|
||||
|
||||
The queen at [4,0] can't attack the king cause it's blocked by the queen at [1,0].
|
||||
|
||||
The queen at [2,4] can't attack the king cause it's not in the same row/column/diagnal as the king.
|
||||
|
||||
</pre>
|
||||
|
||||
|
||||
|
||||
<p><strong>Example 2:</strong></p>
|
||||
|
||||
|
||||
|
||||
<p><strong><img alt="" src="https://assets.leetcode.com/uploads/2019/10/01/untitled-diagram-1.jpg" style="width: 321px; height: 321px;" /></strong></p>
|
||||
|
||||
|
||||
|
||||
<pre>
|
||||
|
||||
<p>On a <strong>0-indexed</strong> <code>8 x 8</code> chessboard, there can be multiple black queens ad one white king.</p>
|
||||
|
||||
<p>You are given a 2D integer array <code>queens</code> where <code>queens[i] = [xQueen<sub>i</sub>, yQueen<sub>i</sub>]</code> represents the position of the <code>i<sup>th</sup></code> black queen on the chessboard. You are also given an integer array <code>king</code> of length <code>2</code> where <code>king = [xKing, yKing]</code> represents the position of the white king.</p>
|
||||
|
||||
<p>Return <em>the coordinates of the black queens that can directly attack the king</em>. You may return the answer in <strong>any order</strong>.</p>
|
||||
|
||||
<p> </p>
|
||||
<p><strong class="example">Example 1:</strong></p>
|
||||
<img alt="" src="https://assets.leetcode.com/uploads/2022/12/21/chess1.jpg" style="width: 400px; height: 400px;" />
|
||||
<pre>
|
||||
<strong>Input:</strong> queens = [[0,1],[1,0],[4,0],[0,4],[3,3],[2,4]], king = [0,0]
|
||||
<strong>Output:</strong> [[0,1],[1,0],[3,3]]
|
||||
<strong>Explanation:</strong> The diagram above shows the three queens that can directly attack the king and the three queens that cannot attack the king (i.e., marked with red dashes).
|
||||
</pre>
|
||||
|
||||
<p><strong class="example">Example 2:</strong></p>
|
||||
<img alt="" src="https://assets.leetcode.com/uploads/2022/12/21/chess2.jpg" style="width: 400px; height: 400px;" />
|
||||
<pre>
|
||||
<strong>Input:</strong> queens = [[0,0],[1,1],[2,2],[3,4],[3,5],[4,4],[4,5]], king = [3,3]
|
||||
<strong>Output:</strong> [[2,2],[3,4],[4,4]]
|
||||
<strong>Explanation:</strong> The diagram above shows the three queens that can directly attack the king and the three queens that cannot attack the king (i.e., marked with red dashes).
|
||||
</pre>
|
||||
|
||||
<p> </p>
|
||||
<p><strong>Constraints:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li><code>1 <= queens.length < 64</code></li>
|
||||
<li><code>queens[i].length == king.length == 2</code></li>
|
||||
<li><code>0 <= xQueen<sub>i</sub>, yQueen<sub>i</sub>, xKing, yKing < 8</code></li>
|
||||
<li>All the given positions are <strong>unique</strong>.</li>
|
||||
</ul>
|
||||
|
Reference in New Issue
Block a user