forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path_244.java
47 lines (42 loc) · 1.5 KB
/
_244.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
package com.fishercoder.solutions;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class _244 {
public static class Solution1 {
class WordDistance {
private Map<String, List<Integer>> map;
public WordDistance(String[] words) {
map = new HashMap<>();
for (int i = 0; i < words.length; i++) {
String w = words[i];
if (map.containsKey(w)) {
map.get(w).add(i);
} else {
List<Integer> list = new ArrayList<>();
list.add(i);
map.put(w, list);
}
}
}
public int shortest(String word1, String word2) {
List<Integer> list1 = map.get(word1);
List<Integer> list2 = map.get(word2);
int result = Integer.MAX_VALUE;
for (int i = 0, j = 0; i < list1.size() && j < list2.size(); ) {
int index1 = list1.get(i);
int index2 = list2.get(j);
if (index1 < index2) {
result = Math.min(result, index2 - index1);
i++;
} else {
result = Math.min(result, index1 - index2);
j++;
}
}
return result;
}
}
}
}