935. Knight Dialer

Link

The chess knight has a unique movement, it may move two squares vertically and one square horizontally, or two squares horizontally and one square vertically (with both forming the shape of an L). The possible movements of chess knight are shown in this diagaram:

A chess knight can move as indicated in the chess diagram below:

We have a chess knight and a phone pad as shown below, the knight can only stand on a numeric cell (i.e. blue cell).

Given an integer n, return how many distinct phone numbers of length n we can dial.

You are allowed to place the knight on any numeric cell initially and then you should perform n - 1 jumps to dial a number of length n. All jumps should be valid knight jumps.

As the answer may be very large, return the answer modulo 109 + 7.

Example 1:

Input: n = 1
Output: 10
Explanation: We need to dial a number of length 1, so placing the knight over any numeric cell of the 10 cells is sufficient.

Example 2:

Input: n = 2
Output: 20
Explanation: All the valid number we can dial are [04, 06, 16, 18, 27, 29, 34, 38, 40, 43, 49, 60, 61, 67, 72, 76, 81, 83, 92, 94]

Solution

DFS + Memo

  int mod = (int)1e9 + 7;
    public int knightDialer(int N) {
        int[][] graph = new int[][] 
        {{4,6},{6,8},{7,9},{4,8},{0,3,9},{},{1,7,0},{2,6},{1,3},{2,4},{4,6}};
        int[][] memo = new int[N][10];
        int count = 0;
        for(int i = 0; i <= 9; i++){
            count = (count + dfs(graph, memo, i, N-1)) % mod;
        }
        return count;        
    }
    
    
    public int dfs(int[][] graph, int[][] memo, int start, int step){
        if(step == 0){
            return 1;
        }
        if(memo[step][start] != 0) return memo[step][start];
        
        int result = 0;
        for(int next : graph[start]){
            result = (result + dfs(graph, memo, next, step-1))%mod;
        }
        memo[step][start] = result;
        
        return result;
    }

Last updated

Was this helpful?