Leetcode-5216 Count Vowels Permutation(统计元音字母序列的数目)

Posted asurudo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode-5216 Count Vowels Permutation(统计元音字母序列的数目)相关的知识,希望对你有一定的参考价值。

 1 typedef long long ll;
 2 typedef pair<int,int> P;
 3 #define _for(i,a,b) for(register int i = (a);i < b;i ++)
 4 #define _rep(i,a,b) for(register int i = (a);i > b;i --)
 5 #define INF 0x3f3f3f3f
 6 #define MOD 1000000007
 7 #define maxn 10003
 8 
 9 class Solution
10 
11     public:
12         ll dp[5][20003];
13         int countVowelPermutation(int n)
14             
15             dp[0][1] = dp[1][1] = dp[2][1] = dp[3][1] = dp[4][1] = 1;
16             _for(i,2,n+1)
17             
18                 dp[0][i] += dp[1][i-1]+dp[2][i-1]+dp[4][i-1];
19                 dp[1][i] += dp[0][i-1]+dp[2][i-1];
20                 dp[2][i] += dp[1][i-1]+dp[3][i-1];
21                 dp[3][i] += dp[2][i-1];
22                 dp[4][i] += dp[2][i-1]+dp[3][i-1];
23                 _for(j,0,5)
24                     dp[j][i] %= MOD;
25             
26             int ans = 0;
27             _for(i,0,5)
28                 ans += dp[i][n],ans %= MOD;
29             return ans;
30         
31 ;

 

以上是关于Leetcode-5216 Count Vowels Permutation(统计元音字母序列的数目)的主要内容,如果未能解决你的问题,请参考以下文章

杭电OJ(HDU)-ACMSteps-Chapter Two-《An Easy Task》《Buildings》《decimal system》《Vowel Counting》

将数据框列转换为多行,重复其他列的值

LC 966. Vowel Spellchecker

leetcode966. Vowel Spellchecker

345.Reverse Vowel of a String

c_cpp Longest_common_vowel_subsequence