-
Notifications
You must be signed in to change notification settings - Fork 3
/
2380.cpp
49 lines (46 loc) · 1.12 KB
/
2380.cpp
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
class Solution {
public:
int secondsToRemoveOccurrences(string s) {
int zeroes = 0;
int steps = 0;
for (auto c : s) {
if (c == '0') {
zeroes++;
continue;
}
if (zeroes) {
steps = max(steps + 1, zeroes);
}
}
return steps;
}
};
// V2
// class Solution {
// public:
// // "01" -> "10"
// int move(string& s) {
// int n = s.size();
// vector<int> res;
// int index = 0;
// int count = 0;
// while (index < n) {
// if (index + 1 < n && s[index] == '0' && s[index + 1] == '1') {
// s[index] = '1';
// s[index + 1] = '0';
// index += 2;
// count++;
// }
// else index++;
// }
// return count;
// }
// int secondsToRemoveOccurrences(string s) {
// if (s.size() == 1) return 0;
// int res = 0;
// while (move(s) != 0) {
// res++;
// }
// return res;
// }
// };