Leetcode 763. Partition Labels

文章作者:Tyan
博客:noahsnail.com  |  CSDN  |  简书

1. Description

Partition Labels

2. Solution

  • Version 1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
class Solution {
public:
vector<int> partitionLabels(string S) {
unordered_map<char, int> m;
vector<int> result;
vector<int> indices(S.length());
for(int i = 0; i < S.length(); i++) {
m[S[i]] = i;
}
for(int i = 0; i < S.length(); i++) {
indices[i] = m[S[i]];
}
int max = 0;
int start = 0;
for(int i = 0; i < S.length(); i++) {
if(indices[i] > max) {
max = indices[i];
}
if(i == max) {
result.push_back(max - start + 1);
start = i + 1;
max = 0;
}
}
return result;
}
};
  • Version 2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
class Solution {
public:
vector<int> partitionLabels(string S) {
unordered_map<char, int> m;
vector<int> result;
for(int i = 0; i < S.length(); i++) {
m[S[i]] = i;
}
int max = 0;
int start = 0;
for(int i = 0; i < S.length(); i++) {
if(m[S[i]] > max) {
max = m[S[i]];
}
if(i == max) {
result.push_back(max - start + 1);
start = i + 1;
max = 0;
}
}
return result;
}
};

Reference

  1. https://leetcode.com/problems/partition-labels/description/
如果有收获,可以请我喝杯咖啡!