題目出處
https://leetcode.com/problems/decode-ways/description/
難度
medium
題目分類
Array, HashTable
個人範例解法
class Solution {
public:
int numDecodings(string s) {
// dp
int n = s.size();
if(n <= 0){
return 0;
}
vector<int> dp(n+1);
dp[n] = 1; // ..... 1
for(int i=n-1; i>=0 ; i--){
if(s[i] == '0'){ // invalid case
dp[i] = 0;
continue;
}
// default
dp[i] = dp[i+1];
// if special case
int num = stoi(s.substr(i, 2)); // count 2
// cout << num << endl;
if( 10 <= num && num <= 26 ){
dp[i] = dp[i+1] + dp[i+2];
}
}
// for(int i=0; i<n+1; i++)
// cout << dp[i] << " ";
return dp[0];
}
}
解法重點
此為我的解法,應還有其他解法
這題主要考的是 DP,需要先建立一張表。
- 以一般的 case 而言 (我們一個一個數,應該 dp[i] = dp[i+1])
- 特殊 case 的話,允許我們一次走兩格,所以答案會變成 dp[i] = dp[i+1] + dp[i+2]
- 如果碰到 0 開頭的子字串,表示為非法字串,dp[i] = 0
動態規劃 (Dynamic programming,DP) 可參考:
Reference
⭐ Leetcode 解題紀錄 ⭐ | 題型 | 資料結構 | Python Solution | C++ Solution | Note | |
---|---|---|---|---|---|---|
⭐BFS 相關題型 ⭐ | ||||||
104 | Maximum Depth of Binary Tree | BFS (分層) | Python | |||
94 | Binary Tree Inorder Traversal | BFS (分層) | Tree | Python | 內含 處理 Tree 樹問題的重點 | |
102 | Binary Tree Level Order Traversal | BFS (分層) | Tree | Python | ||
103 | Binary Tree Zigzag Level Order Traversal | BFS (分層) | Tree | Python | ||
107 | Binary Tree Level Order Traversal II | BFS (分層) | Tree | Python | ||
133 | Clone Graph | BFS (分層) | Graph | Python | Graph 的基本操作 #重要題型 | |
127 | Word Ladder | BFS (分層), DFS | Graph | Python | ||
[Lint] 127 | Topological Sorting | BFS (拓撲) | Python | 內有 indegree, outdegree 介紹 #重要題型 | ||
207 | Course Schedule | BFS (拓樸) | Graph | Python | ||
210 | Course Schedule II | BFS (拓樸) | Graph | Python | ||
[Lint] 892 | Alien Dictionary | BFS (拓樸) | Graph | Python | ||
[Lint] 431 | Connected Component in Undirected Graph | BFS (連通塊) | Graph | Python | 內含 BFS 模板 #重要題型 | |
1091 | Shortest Path in Binary Matrix | BFS (最短路徑) | Matrix |