Skip to content

Commit 6f1dcbd

Browse files
Merge pull request #160
add new problems of DP
2 parents ca3d3d6 + baf711f commit 6f1dcbd

File tree

6 files changed

+205
-4
lines changed

6 files changed

+205
-4
lines changed

contest/src/main/java/com/github/contest/Execute.kt

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package com.github.contest
22

33

4-
import com.github.contest.array.sortArrayByParityIIAlternativeSolution
4+
import com.github.contest.dp.longestArithSeqLength
55
import java.util.TreeMap
66

77

@@ -11,8 +11,7 @@ import java.util.TreeMap
1111

1212
fun main() {
1313

14-
sortArrayByParityIIAlternativeSolution(intArrayOf(4, 2, 5, 7)).also { it.printArray() }
15-
14+
longestArithSeqLength(intArrayOf(3, 6, 9, 12))
1615
}
1716

1817
fun generateTesting() {

contest/src/main/java/com/github/contest/array/AlternativeSolutionArray.kt

+30
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,34 @@ fun sortArrayByParityIIAlternativeSolution(nums: IntArray): IntArray {
3939
}
4040

4141
return nums
42+
}
43+
44+
/**
45+
* 2460. Apply Operations to an Array
46+
* Alternative Solution
47+
*/
48+
49+
fun applyOperationsAlternativeSolution(nums: IntArray): IntArray {
50+
for (i in 0 until nums.size - 1) {
51+
if (nums[i] == nums[i + 1]) {
52+
nums[i] *= 2
53+
nums[i + 1] = 0
54+
}
55+
}
56+
57+
var insertPosition = 0
58+
for (i in nums.indices) {
59+
if (nums[i] != 0) {
60+
nums[insertPosition] = nums[i]
61+
insertPosition++
62+
}
63+
}
64+
65+
while (insertPosition < nums.size) {
66+
nums[insertPosition] = 0
67+
insertPosition++
68+
}
69+
70+
return nums
71+
4272
}

contest/src/main/java/com/github/contest/array/ArrayLeetcode.kt

+33
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,37 @@ fun sortArrayByParityII(nums: IntArray): IntArray {
6262
return nums
6363
}
6464

65+
/**
66+
* 2460. Apply Operations to an Array
67+
*/
68+
69+
fun applyOperations(nums: IntArray): IntArray {
70+
for (i in 0 until nums.size - 1) {
71+
if (nums[i] == nums[i + 1]) {
72+
nums[i] *= 2
73+
nums[i + 1] = 0
74+
}
75+
}
76+
var i = 0
77+
var j = 1
78+
while (i < nums.size && j < nums.size) {
79+
while (i < nums.size && nums[i] != 0) i++
80+
j = i
81+
while (j < nums.size && nums[j] == 0) j++
82+
if (i < nums.size && j < nums.size) {
83+
nums.swap(i, j)
84+
i++
85+
j++
86+
}
87+
}
88+
89+
return nums
90+
}
91+
92+
private fun IntArray.swap(from: Int, to: Int) {
93+
val temp = this[from]
94+
this[from] = this[to]
95+
this[to] = temp
96+
}
97+
6598

contest/src/main/java/com/github/contest/array/ArrayProdVariant.kt

+49
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,52 @@ fun getCommonProdVariant(nums1: IntArray, nums2: IntArray): Int {
2424

2525
fun isArraySpecialProdVariant(nums: IntArray): Boolean =
2626
nums.isEmpty() || nums.toList().windowed(2).all { (a, b) -> a % 2 != b % 2 }
27+
28+
29+
/**
30+
* 2460. Apply Operations to an Array
31+
* Prod Variant
32+
*/
33+
34+
fun applyOperationsProdVariant(nums: IntArray): IntArray {
35+
(0 until nums.size - 1).forEach { index ->
36+
if (nums[index] == nums[index + 1]) {
37+
nums[index] *= 2
38+
nums[index + 1] = 0
39+
}
40+
}
41+
42+
var insertIndex = 0
43+
nums.indices.forEach {
44+
if (it != 0) {
45+
nums[insertIndex] = it
46+
insertIndex++
47+
}
48+
}
49+
50+
(insertIndex until nums.size).forEach {
51+
nums[it] = 0
52+
}
53+
54+
return nums
55+
}
56+
57+
58+
fun applyOperationsProdVariantII(nums: IntArray): IntArray {
59+
nums.indices.drop(1).forEach { i ->
60+
if (nums[i - 1] == nums[i]) {
61+
nums[i - 1] *= 2
62+
nums[i] = 0
63+
}
64+
}
65+
66+
var insertPos = 0
67+
nums.forEach { num ->
68+
if (num != 0) {
69+
nums[insertPos++] = num
70+
}
71+
}
72+
nums.fill(0, insertPos)
73+
74+
return nums
75+
}

contest/src/main/java/com/github/contest/dp/DpLeetcode.kt

+67-1
Original file line numberDiff line numberDiff line change
@@ -350,4 +350,70 @@ fun maxAbsoluteSum(nums: IntArray): Int {
350350
}
351351

352352
return maxOf(maxSoFar, abs(minSoFar))
353-
}
353+
}
354+
355+
/**
356+
* 1143. Longest Common Subsequence
357+
*/
358+
359+
fun longestCommonSubsequence(text1: String, text2: String): Int {
360+
val n = text1.length
361+
val m = text2.length
362+
val dp = Array(n + 1) { IntArray(m + 1) }
363+
364+
for (i in 1..n) {
365+
for (j in 1..m) {
366+
if (text1[i - 1] == text2[j - 1]) {
367+
dp[i][j] = dp[i - 1][j - 1] + 1
368+
} else {
369+
dp[i][j] = maxOf(dp[i][j - 1], dp[i - 1][j])
370+
}
371+
}
372+
}
373+
374+
return dp[n][m]
375+
}
376+
377+
/**
378+
* 1048. Longest String Chain
379+
*/
380+
381+
fun longestStrChain(words: Array<String>): Int {
382+
val sortedWords = words.sortedBy { it.length }
383+
val dp = mutableMapOf<String, Int>()
384+
var longestChain = 0
385+
386+
for (word in sortedWords) {
387+
var currentChain = 1
388+
for (i in word.indices) {
389+
val predecessor = word.removeRange(i, i + 1)
390+
currentChain = maxOf(currentChain, dp.getOrDefault(predecessor, 0) + 1)
391+
}
392+
dp[word] = currentChain
393+
longestChain = maxOf(longestChain, currentChain)
394+
}
395+
396+
return longestChain
397+
}
398+
399+
/**
400+
* 1027. Longest Arithmetic Subsequence
401+
*/
402+
403+
fun longestArithSeqLength(nums: IntArray): Int {
404+
val n = nums.size
405+
406+
val dp = Array(n) { mutableMapOf<Int, Int>() }
407+
var longest = 2
408+
409+
for (i in 1 until n) {
410+
for (j in 0 until i) {
411+
val diff = nums[i] - nums[j]
412+
val length = dp[j].getOrDefault(diff, 1) + 1
413+
dp[i][diff] = length
414+
longest = maxOf(longest, length)
415+
}
416+
}
417+
418+
return longest
419+
}

contest/src/main/java/com/github/contest/dp/DpProdVariant.kt

+24
Original file line numberDiff line numberDiff line change
@@ -85,3 +85,27 @@ fun longestIdealStringProdVariantII(s: String, k: Int): Int =
8585
}
8686
}.max()
8787

88+
89+
/**
90+
* 1143. Longest Common Subsequence
91+
* Prod Variant
92+
*/
93+
94+
fun longestCommonSubsequenceProdVariant(text1: String, text2: String): Int {
95+
val n = text1.length
96+
val m = text2.length
97+
val dp = Array(n + 1) { IntArray(m + 1) }
98+
99+
(1..n).forEach { row ->
100+
(1..m).forEach { col ->
101+
dp[row][col] = when {
102+
text1[row - 1] == text2[col - 1] -> dp[row - 1][col - 1] + 1
103+
else -> maxOf(dp[row - 1][col], dp[row][col - 1])
104+
}
105+
}
106+
}
107+
108+
return dp.lastElement()
109+
}
110+
111+
private fun Array<IntArray>.lastElement(): Int = this.last().last()

0 commit comments

Comments
 (0)