-
Notifications
You must be signed in to change notification settings - Fork 2.3k
/
0072-edit-distance.kt
95 lines (80 loc) · 2.5 KB
/
0072-edit-distance.kt
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
/*
* DP Time O(m*n) and space O(m*n)
*/
class Solution {
fun minDistance(word1: String, word2: String): Int {
val cache = Array(word1.length + 1) {
IntArray(word2.length + 1){ Integer.MAX_VALUE }
}
for(j in 0..word2.length)
cache[word1.length][j] = word2.length - j
for(i in 0..word1.length)
cache[i][word2.length] = word1.length - i
for(i in word1.lastIndex downTo 0) {
for(j in word2.lastIndex downTo 0) {
if(word1[i] == word2[j]) {
cache[i][j] = cache[i + 1][j + 1]
}else {
cache[i][j] = 1 + minOf(
cache[i + 1][j],
cache[i][j + 1],
cache[i + 1][j + 1]
)
}
}
}
return cache[0][0]
}
}
/*
* DP Time O(m*n) and optimized space O(n)
*/
class Solution {
fun minDistance(word1: String, word2: String): Int {
val m = word1.length
val n = word2.length
var prev = IntArray(n + 1) { it }
for (i in 1..m) {
val new = IntArray(n + 1)
new[0] = i
for (j in 1..n) {
if (word1[i - 1] == word2[j - 1]) {
new[j] = prev[j - 1]
} else {
new[j] = 1 + minOf(
prev[j],
prev[j - 1],
new[j - 1]
)
}
}
prev = new
}
return prev[n]
}
}
/*
* DFS/Recursion + memoization Time O(m*n) and space O(n*m)
*/
class Solution {
fun minDistance(word1: String, word2: String): Int {
val cache = Array(word1.length + 1) { IntArray(word2.length + 1){ Integer.MAX_VALUE } }
fun dfs(i: Int, j: Int): Int {
if (i == word1.length && j == word2.length) return 0
else if (i == word1.length) return word2.length - j
else if (j == word2.length) return word1.length - i
if (cache[i][j] != Integer.MAX_VALUE) return cache[i][j]
if (word1[i] == word2[j]) {
cache[i][j] = dfs(i + 1, j + 1)
} else {
cache[i][j] = 1 + minOf(
dfs(i + 1, j),
dfs(i, j + 1),
dfs(i + 1, j + 1)
)
}
return cache[i][j]
}
return dfs(0, 0)
}
}