<p>A game is played by a cat and a mouse named Cat and Mouse.</p> <p>The environment is represented by a <code>grid</code> of size <code>rows x cols</code>, where each element is a wall, floor, player (Cat, Mouse), or food.</p> <ul> <li>Players are represented by the characters <code>'C'</code>(Cat)<code>,'M'</code>(Mouse).</li> <li>Floors are represented by the character <code>'.'</code> and can be walked on.</li> <li>Walls are represented by the character <code>'#'</code> and cannot be walked on.</li> <li>Food is represented by the character <code>'F'</code> and can be walked on.</li> <li>There is only one of each character <code>'C'</code>, <code>'M'</code>, and <code>'F'</code> in <code>grid</code>.</li> </ul> <p>Mouse and Cat play according to the following rules:</p> <ul> <li>Mouse <strong>moves first</strong>, then they take turns to move.</li> <li>During each turn, Cat and Mouse can jump in one of the four directions (left, right, up, down). They cannot jump over the wall nor outside of the <code>grid</code>.</li> <li><code>catJump, mouseJump</code> are the maximum lengths Cat and Mouse can jump at a time, respectively. Cat and Mouse can jump less than the maximum length.</li> <li>Staying in the same position is allowed.</li> <li>Mouse can jump over Cat.</li> </ul> <p>The game can end in 4 ways:</p> <ul> <li>If Cat occupies the same position as Mouse, Cat wins.</li> <li>If Cat reaches the food first, Cat wins.</li> <li>If Mouse reaches the food first, Mouse wins.</li> <li>If Mouse cannot get to the food within 1000 turns, Cat wins.</li> </ul> <p>Given a <code>rows x cols</code> matrix <code>grid</code> and two integers <code>catJump</code> and <code>mouseJump</code>, return <code>true</code><em> if Mouse can win the game if both Cat and Mouse play optimally, otherwise return </em><code>false</code>.</p> <p> </p> <p><strong>Example 1:</strong></p> <img alt="" src="https://assets.leetcode.com/uploads/2020/09/12/sample_111_1955.png" style="width: 580px; height: 239px;" /> <pre> <strong>Input:</strong> grid = ["####F","#C...","M...."], catJump = 1, mouseJump = 2 <strong>Output:</strong> true <strong>Explanation:</strong> Cat cannot catch Mouse on its turn nor can it get the food before Mouse. </pre> <p><strong>Example 2:</strong></p> <img alt="" src="https://assets.leetcode.com/uploads/2020/09/12/sample_2_1955.png" style="width: 580px; height: 175px;" /> <pre> <strong>Input:</strong> grid = ["M.C...F"], catJump = 1, mouseJump = 4 <strong>Output:</strong> true </pre> <p><strong>Example 3:</strong></p> <pre> <strong>Input:</strong> grid = ["M.C...F"], catJump = 1, mouseJump = 3 <strong>Output:</strong> false </pre> <p> </p> <p><strong>Constraints:</strong></p> <ul> <li><code>rows == grid.length</code></li> <li><code>cols = grid[i].length</code></li> <li><code>1 <= rows, cols <= 8</code></li> <li><code>grid[i][j]</code> consist only of characters <code>'C'</code>, <code>'M'</code>, <code>'F'</code>, <code>'.'</code>, and <code>'#'</code>.</li> <li>There is only one of each character <code>'C'</code>, <code>'M'</code>, and <code>'F'</code> in <code>grid</code>.</li> <li><code>1 <= catJump, mouseJump <= 8</code></li> </ul>