5919:所有子字符串中的元音

This commit is contained in:
huangge1199@hotmail.com 2021-11-07 14:44:15 +08:00
parent 3759ff2672
commit 2fa5b0edd4
4 changed files with 145 additions and 2 deletions

View File

@ -0,0 +1,87 @@
//给你一个字符串 word 返回 word 的所有子字符串中 元音的总数 元音是指 'a''e''i''o' 'u'
//
// 子字符串 是字符串中一个连续非空的字符序列
//
// 注意由于对 word 长度的限制比较宽松答案可能超过有符号 32 位整数的范围计算时需当心
//
//
//
// 示例 1
//
//
//输入word = "aba"
//输出6
//解释
//所有子字符串是"a""ab""aba""b""ba" "a"
//- "b" 中有 0 个元音
//- "a""ab""ba" "a" 每个都有 1 个元音
//- "aba" 中有 2 个元音
//因此元音总数 = 0 + 1 + 1 + 1 + 1 + 2 = 6
//
//
// 示例 2
//
//
//输入word = "abc"
//输出3
//解释
//所有子字符串是"a""ab""abc""b""bc" "c"
//- "a""ab" "abc" 每个都有 1 个元音
//- "b""bc" "c" 每个都有 0 个元音
//因此元音总数 = 1 + 1 + 1 + 0 + 0 + 0 = 3
//
// 示例 3
//
//
//输入word = "ltcd"
//输出0
//解释"ltcd" 的子字符串均不含元音
//
// 示例 4
//
//
//输入word = "noosabasboosa"
//输出237
//解释所有子字符串中共有 237 个元音
//
//
//
//
// 提示
//
//
// 1 <= word.length <= 10
// word 由小写英文字母组成
//
// 👍 3 👎 0
package leetcode.editor.cn;
import java.util.Arrays;
import java.util.List;
//5919:所有子字符串中的元音
class VowelsOfAllSubstrings {
public static void main(String[] args) {
//测试代码
Solution solution = new VowelsOfAllSubstrings().new Solution();
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {
public long countVowels(String word) {
char[] chs = word.toCharArray();
long sum = 0;
List<Character> list = Arrays.asList('a', 'e', 'i', 'o', 'u');
for (int i = 0; i < word.length(); i++) {
if (list.contains(chs[i])) {
sum += (long) (i + 1) * (chs.length - i);
}
}
return sum;
}
}
//leetcode submit region end(Prohibit modification and deletion)
}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,56 @@
<p>给你一个字符串 <code>word</code> ,返回 <code>word</code> 的所有子字符串中 <strong>元音的总数</strong> ,元音是指 <code>'a'</code><code>'e'</code><em></em><code>'i'</code><em></em><code>'o'</code><em> </em><code>'u'</code><em></em></p>
<p><strong>子字符串</strong> 是字符串中一个连续(非空)的字符序列。</p>
<p><strong>注意:</strong>由于对 <code>word</code> 长度的限制比较宽松,答案可能超过有符号 32 位整数的范围。计算时需当心。</p>
<p>&nbsp;</p>
<p><strong>示例 1</strong></p>
<pre>
<strong>输入:</strong>word = "aba"
<strong>输出:</strong>6
<strong>解释:</strong>
所有子字符串是:"a"、"ab"、"aba"、"b"、"ba" 和 "a" 。
- "b" 中有 0 个元音
- "a"、"ab"、"ba" 和 "a" 每个都有 1 个元音
- "aba" 中有 2 个元音
因此,元音总数 = 0 + 1 + 1 + 1 + 1 + 2 = 6 。
</pre>
<p><strong>示例 2</strong></p>
<pre>
<strong>输入:</strong>word = "abc"
<strong>输出:</strong>3
<strong>解释:</strong>
所有子字符串是:"a"、"ab"、"abc"、"b"、"bc" 和 "c" 。
- "a"、"ab" 和 "abc" 每个都有 1 个元音
- "b"、"bc" 和 "c" 每个都有 0 个元音
因此,元音总数 = 1 + 1 + 1 + 0 + 0 + 0 = 3 。</pre>
<p><strong>示例 3</strong></p>
<pre>
<strong>输入:</strong>word = "ltcd"
<strong>输出:</strong>0
<strong>解释:</strong>"ltcd" 的子字符串均不含元音。</pre>
<p><strong>示例 4</strong></p>
<pre>
<strong>输入:</strong>word = "noosabasboosa"
<strong>输出:</strong>237
<strong>解释:</strong>所有子字符串中共有 237 个元音。
</pre>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ul>
<li><code>1 &lt;= word.length &lt;= 10<sup>5</sup></code></li>
<li><code>word</code> 由小写英文字母组成</li>
</ul>
<div><li>👍 3</li><li>👎 0</li></div>

File diff suppressed because one or more lines are too long