题目描述
字符串 S 由小写字母组成。我们要把这个字符串划分为尽可能多的片段,同一字母最多出现在一个片段中。返回一个表示每个字符串片段的长度的列表。
示例:
输入:S = “ababcbacadefegdehijhklij”
输出:[9,7,8]
解释:
划分结果为 “ababcbaca”, “defegde”, “hijhklij”。
每个字母最多出现在一个片段中。
像 “ababcbacadefegde”, “hijhklij” 的划分是错误的,因为划分的片段数较少。
提示:
- S的长度在[1, 500]之间。
- S只包含小写字母 ‘a’ 到 ‘z’ 。
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/partition-labels
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
思路
- 先遍历用数组存储每个子母最后出现的下标。
- 第二次遍历时end是当前段所有子母最后出现的下标,当i==end时证明前i个子母在后面不会再出现,end-stat+1这一段就是最小段。
class Solution {
public List<Integer> partitionLabels(String S) {
int n = S.length();
int[] lastIndex = new int[26];
for(int i = 0;i < n;++i){
lastIndex[S.charAt(i) - 'a'] = i;
}
List<Integer> res = new ArrayList<>();
int start = 0,end = 0;
for(int i = 0;i < n;++i){
end = Math.max(end,lastIndex[S.charAt(i)-'a']);
if(i == end){
res.add(end-start+1);
start = end+1;
}
}
return res;
}
}