109th LeetCode Weekly Contest Knight Dialer

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

 .           

 

This time, we place our chess knight on any numbered key of a phone pad (indicated above), and the knight makes N-1 hops.  Each hop must be from one key to another numbered key.

Each time it lands on a key (including the initial placement of the knight), it presses the number of that key, pressing N digits total.

How many distinct numbers can you dial in this manner?

Since the answer may be large, output the answer modulo 10^9 + 7.

 

Example 1:

Input: 1
Output: 10

Example 2:

Input: 2
Output: 20

Example 3:

Input: 3
Output: 46

 

Note:

  • 1 <= N <= 5000

说就是一个马在键盘上跳,能得到多少种的数字,比如1就是不跳。。在原地就是0到9,10个数

那么可以看看,0这个位置只有4和6可以跳过来,1是6,8可以跳过来,5是不可能到的,所以就有下面的代码(参考别人的,自己写的不好看)

class Solution {
public:
    int mod = 1000000007;
    int dp[10],dp2[10];
    int knightDialer(int N) {
       for(int i=0;i<=9;i++){
            dp[i]=1;
        }
        for(int i=1;i<N;i++){
            dp2[0] = (dp[4]+dp[6])%mod;
            dp2[1] = (dp[6]+dp[8])%mod;
            dp2[2] = (dp[7]+dp[9])%mod;
            dp2[3] = (dp[4]+dp[8])%mod;
            dp2[4] = ((dp[3]+dp[9])%mod+dp[0])%mod;
            dp2[5] = 0;
            dp2[6] = ((dp[1]+dp[7])%mod+dp[0])%mod;
            dp2[7] = (dp[2]+dp[6])%mod;
            dp2[8] = (dp[1]+dp[3])%mod;
            dp2[9] = (dp[2]+dp[4])%mod;
            for(int j=0;j<=9;j++){
                dp[j] = dp2[j];
            }
        }
        int result = 0;
        for(int i=0;i<=9;i++){
            cout<<dp[i]<< " ";
            result += dp[i] %mod;
            result %= mod;
        }
        cout<<endl;
        return result;
    }
};

 

转载于:https://www.cnblogs.com/yinghualuowu/p/9904070.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值