-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathShortest.java
65 lines (55 loc) · 1.47 KB
/
Shortest.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
package String;
/**
* Author - archit.s
* Date - 20/08/18
* Time - 12:59 PM
*/
public class Shortest {
// Solution 1
// public int[] shortestToChar(String S, char C) {
// List<Integer> l = new LinkedList<>();
// int[] result = new int[S.length()];
//
// for(int i=0; i<S.length(); i++){
// if(S.charAt(i) == C){
// l.add(i);
// }
// }
//
// for(int i=0; i<S.length(); i++){
// if(S.charAt(i) == C){
// result[i] = 0;
// }
// else{
// int min = Integer.MAX_VALUE;
// for(int j=0; j<l.size(); j++){
// int temp = Math.abs(l.get(j)-i);
// if( temp < min){
// min = temp;
// }
// }
// result[i] = min;
// }
// }
//
// return result;
// }
public int[] shortestToChar(String S, char C) {
int[] result = new int[S.length()];
int prev = Integer.MIN_VALUE / 2;
for(int i=0; i<S.length(); i++){
if(S.charAt(i) == C){
prev = i;
}
result[i] = Math.abs(prev - i);
}
prev = Integer.MIN_VALUE / 2;
for(int i=S.length()-1; i>=0; i--){
if(S.charAt(i) == C){
prev = i;
}
result[i] = Math.min(Math.abs(prev - i), result[i]);
}
return result;
}
}