LeetCode - Decode Ways

来源:http://www.cnblogs.com/shuaiwhu/archive/2016/01/04/5098223.html
-Advertisement-
Play Games

題目:A message containing letters from A-Z is being encoded to numbers using the following mapping:'A' -> 1'B' -> 2...'Z' -> 26Given an encoded message ...


題目:

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.

思路:

分情況討論

1. 當前字元為0

    1.1 前一個字元為0,3-9.

    1.2 前一個字元為1,2

2. 當前字元非0

    2.1 前一個字元為0,3-9

    2.2 前一個字元為2,當前字元為7-9

    2.3 餘下情況

package dp;

public class DecodeWays {

    public int numDecodings(String s) {
        int n;
        if (s == null || (n = s.length()) == 0) return 0;
        int[] dp = new int[n + 1];
        dp[0] = 1;
        if (s.charAt(0) == '0') return 0;
        dp[1] = 1;
        for (int i = 2; i <= n; ++i) {
            if (s.charAt(i - 1) == '0') {
                if (s.charAt(i - 2) != '1' && s.charAt(i - 2) != '2') return 0;
                dp[i] = dp[i - 2];
            } else if (s.charAt(i - 2) == '0' || s.charAt(i - 2) > '2' || 
                    (s.charAt(i - 2) == '2' && s.charAt(i - 1) > '6')) {
                dp[i] = dp[i - 1];
            } else {
                dp[i] = dp[i - 1] + dp[i - 2];
            }
        }
        return dp[n];
    }
    
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        DecodeWays d = new DecodeWays();
        System.out.println(d.numDecodings("10") == 1);
        System.out.println(d.numDecodings("101") == 1);
        System.out.println(d.numDecodings("1001") == 0);
        System.out.println(d.numDecodings("10012") == 0);
        System.out.println(d.numDecodings("0012") == 0);
        System.out.println(d.numDecodings("12") == 2);
        System.out.println(d.numDecodings("128") == 2);
        System.out.println(d.numDecodings("27") == 1);
        System.out.println(d.numDecodings("99") == 1);
    }

}

 更簡化一下:

package dp;

public class DecodeWays {

    public int numDecodings(String s) {
        int n;
        if (s == null || (n = s.length()) == 0) return 0;
        int[] dp = new int[n + 1];
        dp[0] = 1;
        if (s.charAt(0) == '0') return 0;
        dp[1] = 1;

        for (int i = 2; i <= n; ++i) {
            int c1 = 0;
            if (s.charAt(i - 1) != '0')
                c1 = dp[i - 1];
            int c2 = 0;
            if (s.charAt(i - 2) == '1' || (s.charAt(i - 2) == '2' && s.charAt(i - 1) < '7'))
                c2 = dp[i - 2];
            dp[i] = c1 + c2;
        }
        
        return dp[n];
    }
    
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        DecodeWays d = new DecodeWays();
        System.out.println(d.numDecodings("10") == 1);
        System.out.println(d.numDecodings("101") == 1);
        System.out.println(d.numDecodings("1001") == 0);
        System.out.println(d.numDecodings("10012") == 0);
        System.out.println(d.numDecodings("0012") == 0);
        System.out.println(d.numDecodings("12") == 2);
        System.out.println(d.numDecodings("128") == 2);
        System.out.println(d.numDecodings("27") == 1);
        System.out.println(d.numDecodings("99") == 1);
    }

}

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 1. 不同瀏覽器元素的預設屬性有所不同,使用Reset可重置瀏覽器元素的一些預設屬性,以達到瀏覽器的相容。/** 清除內外邊距 **/body, h1, h2, h3, h4, h5, h6, hr, p, blockquote,/* structural elements 結構元素 */dl, d...
  • 摘要: 最近在開發項目中又用到了前端分頁,以前也做過,為了方便以後使用所以將他封裝成第三方插件,不依賴任何庫。網上已經有很多插件,問什麼還要自己造輪子?自己寫的擴展性高不依賴任何庫作為一次技術沉澱線上預覽:http://baixuexiyang.github.io/pagination/項目地址:....
  • D2前端技術論壇(Designer & Developer Frontend Technology Forum),簡稱D2。為國內前端開發者和網站設計師提供一個交流的機會,一起分享技術的樂趣,探討行業的發展,以技術會友。它是中國所有前端開發者的節日,包括前端設計師,前端開發工程師,和所有對前端技術....
  • 1. fill() arr.fill(value, [start], [end]) fill()方法向數組的開始位置到結束位置填充一個靜態值 參數: value: 要填充的值 start: 可選。開始位置,預設為0 end: 可選。結束位置,預設為length-1 返回: ...
  • Angular - React之爭Angular和React無疑是目前最受追捧的兩個前端框架,谷歌也發現Angular1.x不足的地方,開始開發2.0版本,臉書發現React的組件化和虛擬DOM非常好,也同時投資React Native。00.先比較Angular1.x與React這兩個沒什麼可比性...
  • weiphp後臺使用設置實現在用戶授權時候顯示公眾號的名字以及分享使用該服務號使用步驟1:在weiphp後臺打開公眾號管理-新增2:輸入公眾號名字,原始ID,微信號3:在這裡公眾號能查找到4: 輸入完成之後下一步,他會提供URL和token令牌.然後就要在微信公眾號後臺配置6輸入完成之後我,記錄下k...
  • Openfire和Strophejs網站功能變數名稱不同如何進行通信,這個問題總算解決,下麵是解決步驟。解決方案一:Chrome瀏覽器預設支持跨域訪問IE瀏覽器需要做配置:點擊IE瀏覽器的的“工具->Internet 選項->安全->自定義級別”將“其他”選項中的“通過域訪問數據源”選中為“啟用”或者“提示...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...