forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_821.java
62 lines (58 loc) · 1.98 KB
/
_821.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
package com.fishercoder.solutions;
import java.util.Arrays;
import java.util.TreeSet;
public class _821 {
public static class Solution1 {
public int[] shortestToChar(String S, char C) {
int[] result = new int[S.length()];
TreeSet<Integer> cIndices = new TreeSet();
for (int i = 0; i < S.length(); i++) {
if (S.charAt(i) == C) {
cIndices.add(i);
}
}
for (int i = 0; i < S.length(); i++) {
int leftDist = Integer.MAX_VALUE;
if (cIndices.floor(i) != null) {
leftDist = Math.abs(cIndices.floor(i) - i);
}
int rightDist = Integer.MAX_VALUE;
if (cIndices.ceiling(i) != null) {
rightDist = Math.abs(cIndices.ceiling(i) - i);
}
result[i] = Math.min(leftDist, rightDist);
}
return result;
}
}
public static class Solution2 {
public int[] shortestToChar(String s, char c) {
int[] result = new int[s.length()];
Arrays.fill(result, Integer.MAX_VALUE);
for (int i = 0; i < s.length(); i++) {
if (s.charAt(i) == c) {
result[i] = 0;
}
}
for (int i = 0; i < s.length(); i++) {
if (result[i] != 0) {
int j = i - 1;
while (j >= 0 && result[j] != 0) {
j--;
}
if (j >= 0) {
result[i] = i - j;
}
j = i + 1;
while (j < s.length() && result[j] != 0) {
j++;
}
if (j < s.length()) {
result[i] = Math.min(result[i], j - i);
}
}
}
return result;
}
}
}