码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode:Decode Ways

时间:2014-07-23 17:06:05      阅读:324      评论:0      收藏:0      [点我收藏+]

标签:leetcode   dp   string   

     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的题目,下面说说dp状态的定义.


dp[i]:表示以字符串s[0]...s[i-1]的编码方式有多少种.


对于一个状态dp[i]可能有两种情况:①s[i]映射为一个独立的字母.②s[i-1]与s[i]两个字符映射成一个


字母.需要注意的是字符‘0‘的情况,还有就是s[i-1]与s[i]组合成的整数大于26,只需要处理下特别情况


就可以了,时间复杂度为O(N).


解题代码(12ms):

class Solution 
{
public:
    int numDecodings(string s) 
    {        
       const int n = s.size();
       int dp[n + 1];
       if (!n || s[0] == '0')
           return 0;
       dp[0] = dp[1] = 1;
       for (int i = 1; i < n; ++i)
       {
           if (s[i] == '0')
           {
               if (s[i - 1] == '1' || s[i - 1] == '2')
                   dp[i + 1] = dp[i - 1];
               else
                   return 0;
               continue;
           }
           int num = (s[i - 1] - '0') * 10 + s[i] - '0';
           dp[i + 1] = dp[i] + (num > 9 && num <= 26 ? dp[i - 1] : 0);
       }
       return dp[n];
    }
};


LeetCode:Decode Ways

标签:leetcode   dp   string   

原文地址:http://blog.csdn.net/dream_you_to_life/article/details/38064263

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!