前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Leetcode 91 Decode Ways

Leetcode 91 Decode Ways

作者头像
triplebee
发布2018-01-12 14:59:13
9080
发布2018-01-12 14:59:13
举报

A message containing letters from A-Z is being encoded to numbers using the following mapping:

'A' -> 1
'B' -> 2
...
'Z' -> 26

Given an encoded message containing digits, determine the total number of ways to decode it.

For example, Given encoded message "12", it could be decoded as "AB" (1 2) or "L" (12).

The number of ways decoding "12" is 2.

给定数字串,判断由字母组成的情况的数量。

简单DP,当前位为0,不可能由前一位转移,若前一位为和当前为组合小于26,则可以用之前两位的状态转移。

class Solution {
public:
    int numDecodings(string s) {
        if(s.empty()) return 0;
        vector<int> dp(s.size()+1,0);
        dp[0]=1;
        if(s[0]!='0') dp[1]=1;
        for(int i=1;i<s.size();i++)
        {
            if(s[i]!='0') dp[i+1]+=dp[i];
            if((s[i]>='0' && s[i]<='9' && s[i-1]=='1') || (s[i-1]=='2' && s[i]>='0' && s[i]<='6')) dp[i+1]+=dp[i-1];
        }
        return dp[s.size()];
    }
};
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2016-09-28 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档