Update README.md
Browse files
README.md
CHANGED
|
@@ -41,7 +41,32 @@ The problem is about finding the maximum number of diagonal moves Mikhail can ma
|
|
| 41 |
|
| 42 |
* **Diagonal Movement:** Mikhail can move diagonally, meaning he can move in a way that forms a diagonal line between two points.
|
| 43 |
* **Distance:** The distance between two points is important to determine the number of moves.
|
| 44 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 45 |
==========
|
| 46 |
Prompt: 149 tokens, 386.395 tokens-per-sec
|
| 47 |
Generation: 460 tokens, 24.677 tokens-per-sec
|
|
|
|
| 41 |
|
| 42 |
* **Diagonal Movement:** Mikhail can move diagonally, meaning he can move in a way that forms a diagonal line between two points.
|
| 43 |
* **Distance:** The distance between two points is important to determine the number of moves.
|
| 44 |
+
|
| 45 |
+
**Solution Approach**
|
| 46 |
+
|
| 47 |
+
1. **Understanding the Constraints:** The problem provides information about the starting point, the target point, and the number of queries.
|
| 48 |
+
|
| 49 |
+
2. **Analyzing the Queries:** The queries are the starting points for Mikhail's movements.
|
| 50 |
+
|
| 51 |
+
3. **Finding the Maximum Number of Diagonal Moves:** The maximum number of diagonal moves Mikhail can make is the maximum number of diagonal moves he can make to reach the target point.
|
| 52 |
+
|
| 53 |
+
**Code Example (Python)**
|
| 54 |
+
|
| 55 |
+
```python
|
| 56 |
+
def find_max_diagonal_moves(queries, queries_index):
|
| 57 |
+
# ... (Implementation of the logic to find the maximum number of diagonal moves)
|
| 58 |
+
|
| 59 |
+
# ... (Implementation of the logic to find the maximum number of diagonal moves)
|
| 60 |
+
|
| 61 |
+
```
|
| 62 |
+
|
| 63 |
+
**Important Notes**
|
| 64 |
+
|
| 65 |
+
* **Implementation:** The code example is a starting point. You'll need to implement the logic to find the maximum number of diagonal moves.
|
| 66 |
+
* **Constraints:** The problem provides information about the starting point, the target point, and the number of queries.
|
| 67 |
+
* **Constraints:** The problem provides information about the starting point, the target point, and the number of queries.
|
| 68 |
+
|
| 69 |
+
Let me know if you have any other questions.
|
| 70 |
==========
|
| 71 |
Prompt: 149 tokens, 386.395 tokens-per-sec
|
| 72 |
Generation: 460 tokens, 24.677 tokens-per-sec
|