Skip to content

Latest commit

 

History

History
 
 

913. Cat and Mouse

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

A game on an undirected graph is played by two players, Mouse and Cat, who alternate turns.

The graph is given as follows: graph[a] is a list of all nodes b such that ab is an edge of the graph.

The mouse starts at node 1 and goes first, the cat starts at node 2 and goes second, and there is a hole at node 0.

During each player's turn, they must travel along one edge of the graph that meets where they are.  For example, if the Mouse is at node 1, it must travel to any node in graph[1].

Additionally, it is not allowed for the Cat to travel to the Hole (node 0.)

Then, the game can end in three ways:

  • If ever the Cat occupies the same node as the Mouse, the Cat wins.
  • If ever the Mouse reaches the Hole, the Mouse wins.
  • If ever a position is repeated (i.e., the players are in the same position as a previous turn, and it is the same player's turn to move), the game is a draw.

Given a graph, and assuming both players play optimally, return

  • 1 if the mouse wins the game,
  • 2 if the cat wins the game, or
  • 0 if the game is a draw.

 

Example 1:

Input: graph = [[2,5],[3],[0,4,5],[1,4,5],[2,3],[0,2,3]]
Output: 0

Example 2:

Input: graph = [[1,3],[0],[3],[0,2]]
Output: 1

 

Constraints:

  • 3 <= graph.length <= 50
  • 1 <= graph[i].length < graph.length
  • 0 <= graph[i][j] < graph.length
  • graph[i][j] != i
  • graph[i] is unique.
  • The mouse and the cat can always move. 

Related Topics:
Breadth-first Search, Minimax

Similar Questions:

Solution 1.

// OJ: https://leetcode.com/problems/cat-and-mouse/
// Author: github.com/lzl124631x
// Time: O(N^3)
// Space: O(N^2)
class Solution {
    vector<array<int, 3>> parents(vector<vector<int>> &G, int m, int c, int t) {
        vector<array<int, 3>> ans;
        if (t == 2) {
            for (int m2 : G[m]) ans.push_back({m2, c, 3 - t});
        } else {
            for (int c2 : G[c]) {
                if (c2 > 0) ans.push_back({m, c2, 3 - t});
            }
        }
        return ans;
    }
public:
    int catMouseGame(vector<vector<int>>& G) {
        int N = G.size(), DRAW = 0, MOUSE = 1, CAT = 2;
        int color[50][50][3] = {}, degree[50][50][3] = {};
        for (int i = 0; i < N; ++i) {
            for (int j = 0; j < N; ++j) {
                degree[i][j][1] = G[i].size();
                degree[i][j][2] = G[j].size();
                for (int v : G[j]) {
                    if (v == 0) {
                        degree[i][j][2]--;
                        break;
                    }
                }
            }
        }
        queue<array<int, 4>> q;
        for (int i = 0; i < N; ++i) {
            for (int t = 1; t <= 2; ++t) {
                color[0][i][t] = MOUSE;
                q.push({0, i, t, MOUSE});
                if (i > 0) {
                    color[i][i][t] = CAT;
                    q.push({i, i, t, CAT});
                }
            }
        }
        while (q.size()) {
            auto [i, j, t, c] = q.front();
            q.pop();
            for (auto [i2, j2, t2] : parents(G, i, j, t)) {
                if (color[i2][j2][t2] == DRAW) {
                    if (t2 == c) {
                        color[i2][j2][t2] = c;
                        q.push({i2, j2, t2, c});
                    } else if (--degree[i2][j2][t2] == 0) {
                        color[i2][j2][t2] = 3 - t2;
                        q.push({i2, j2, t2, 3 - t2});
                    }
                }
            }
        }
        return color[1][2][1];
    }
};