forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_424.java
112 lines (100 loc) · 3.64 KB
/
_424.java
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
package com.fishercoder.solutions;
/**
* 424. Longest Repeating Character Replacement
*
* Given a string that consists of only uppercase English letters,
* you can replace any letter in the string with another letter at most k times.
* Find the length of a longest substring containing all repeating letters you can get after performing the above operations.
Note:
Both the string's length and k will not exceed 104.
Example 1:
Input:
s = "ABAB", k = 2
Output:
4
Explanation:
Replace the two 'A's with two 'B's or vice versa.
Example 2:
Input:
s = "AABABBA", k = 1
Output:
4
Explanation:
Replace the one 'A' in the middle with 'B' and form "AABBBBA".
The substring "BBBB" has the longest repeating letters, which is 4.
*/
public class _424 {
//credit: https://discuss.leetcode.com/topic/63494/java-12-lines-o-n-sliding-window-solution-with-explanation
public int characterReplacement(String s, int k) {
int len = s.length();
int[] count = new int[26];
int start = 0;
int maxCount = 0;
int maxLength = 0;
for (int end = 0; end < len; end++) {
maxCount = Math.max(maxCount, ++count[s.charAt(end) - 'A']);
while (end - start + 1 - maxCount > k) {
count[s.charAt(start) - 'A']--;
start++;
}
maxLength = Math.max(maxLength, end - start + 1);
}
return maxLength;
}
//this one can pass all test from test1 to test5, but tests like test6 won't pass
public int characterReplacement_failed_attempt(String s, int k) {
int longest = 0;
if (s == null || s.length() == 0) {
return 0;
}
for (int i = 0; i < s.length(); i++) {
int count = 1;
char val = s.charAt(i);
for (int j = i + 1; j < s.length(); j++) {
if (s.charAt(j) == val) {
count++;
} else {
if (k > 0) {
count++;
char replace = s.charAt(j);
int kCounter = k - 1;
for (int p = j + 1; p < s.length(); p++) {
if (kCounter <= 0) {
if (val == s.charAt(p)) {
count++;
} else {
longest = Math.max(longest, count);
break;
}
} else {
if (val == s.charAt(p)) {
count++;
} else if (replace == s.charAt(p)) {
count++;
kCounter--;
} else {
longest = Math.max(longest, count);
break;
}
}
}
if (kCounter <= 0) {
longest = Math.max(longest, count);
break;
}
} else {
if (s.charAt(j) == val) {
count++;
} else {
longest = Math.max(longest, count);
break;
}
}
}
longest = Math.max(longest, count);
}
longest = Math.max(longest, count);
}
return longest;
}
}