1641. Count Sorted Vowel Strings

复制代码
package LeetCode_1641

/**
 * 1641. Count Sorted Vowel Strings
 * https://leetcode.com/problems/count-sorted-vowel-strings/
 *
 * Given an integer n, return the number of strings of length n that consist only of vowels (a, e, i, o, u) and are lexicographically sorted.
A string s is lexicographically sorted if for all valid i, s[i] is the same as or comes before s[i+1] in the alphabet.

Example 1:
Input: n = 1
Output: 5
Explanation: The 5 sorted strings that consist of vowels only are ["a","e","i","o","u"].

Example 2:
Input: n = 2
Output: 15
Explanation: The 15 sorted strings that consist of vowels only are
["aa","ae","ai","ao","au","ee","ei","eo","eu","ii","io","iu","oo","ou","uu"].
Note that "ea" is not a valid string since 'e' comes after 'a' in the alphabet.

Example 3:
Input: n = 33
Output: 66045

Constraints:
1 <= n <= 50
 * */
class Solution {
    /*
    * solution 1: dfs + backtracking, Time complexity:O(n!), Space complexity:O(n!)
    * solution 2: math, Time complexity:O(n), Space complexity:O(1)
    * */

    private var result = 0
    private val vowels = arrayOf("a", "e", "i", "o", "u")

    fun countVowelStrings(n: Int): Int {
        dfs(0, n, ArrayList())
        return result
    }

    //solution 1
    private fun dfs(index: Int, n: Int, cur: ArrayList<String>) {
        if (cur.size == n) {
            result++
            return
        }
        for (i in index until 5) {
            //check letter's order
            if (cur.isNotEmpty() && cur.get(cur.lastIndex) > vowels[i]) {
                continue
            }
            cur.add(vowels[i])
            dfs(index, n, cur)
            cur.removeAt(cur.lastIndex)
        }
    }

    //solution 2
    private fun math(n_: Int):Int {
        var n = n_
        var a = 1
        var e = 1
        var i = 1
        var o = 1
        var u = 1
        while (n > 1) {
            // add new char before prev string
            a = (a + e + i + o + u)//a, e, i, o, u -> aa, ae, ai, ao, au
            e = (e + i + o + u)
            i = (i + o + u)
            o = (o + u)
            u = u
            n--
        }
        return a + e + i + o + u
    }
}
复制代码

 

posted @   johnny_zhao  阅读(298)  评论(0编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
阅读排行:
· DeepSeek 开源周回顾「GitHub 热点速览」
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· AI与.NET技术实操系列(二):开始使用ML.NET
· .NET10 - 预览版1新功能体验(一)
点击右上角即可分享
微信分享提示