refactor: SubsetSum
(#5432)
* refactor: SubsetSum * checkstyle: fix formatting --------- Co-authored-by: alxkm <alx@alx.com>
This commit is contained in:
parent
14916e692f
commit
cd38531b0d
@ -5,46 +5,32 @@ public final class SubsetSum {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Driver Code
|
* Test if a set of integers contains a subset that sums to a given integer.
|
||||||
*/
|
|
||||||
public static void main(String[] args) {
|
|
||||||
int[] arr = new int[] {50, 4, 10, 15, 34};
|
|
||||||
assert subsetSum(arr, 64);
|
|
||||||
/* 4 + 10 + 15 + 34 = 64 */
|
|
||||||
assert subsetSum(arr, 99);
|
|
||||||
/* 50 + 15 + 34 = 99 */
|
|
||||||
assert !subsetSum(arr, 5);
|
|
||||||
assert !subsetSum(arr, 66);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Test if a set of integers contains a subset that sum to a given integer.
|
|
||||||
*
|
*
|
||||||
* @param arr the array contains integers.
|
* @param arr the array containing integers.
|
||||||
* @param sum target sum of subset.
|
* @param sum the target sum of the subset.
|
||||||
* @return {@code true} if subset exists, otherwise {@code false}.
|
* @return {@code true} if a subset exists that sums to the given value, otherwise {@code false}.
|
||||||
*/
|
*/
|
||||||
public static boolean subsetSum(int[] arr, int sum) {
|
public static boolean subsetSum(int[] arr, int sum) {
|
||||||
int n = arr.length;
|
int n = arr.length;
|
||||||
boolean[][] isSum = new boolean[n + 2][sum + 1];
|
boolean[][] isSum = new boolean[n + 1][sum + 1];
|
||||||
|
|
||||||
isSum[n + 1][0] = true;
|
// Initialize the first column to true since a sum of 0 can always be achieved with an empty subset.
|
||||||
for (int i = 1; i <= sum; i++) {
|
for (int i = 0; i <= n; i++) {
|
||||||
isSum[n + 1][i] = false;
|
|
||||||
}
|
|
||||||
|
|
||||||
for (int i = n; i > 0; i--) {
|
|
||||||
isSum[i][0] = true;
|
isSum[i][0] = true;
|
||||||
for (int j = 1; j <= arr[i - 1] - 1; j++) {
|
|
||||||
if (j <= sum) {
|
|
||||||
isSum[i][j] = isSum[i + 1][j];
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Fill the subset sum matrix
|
||||||
|
for (int i = 1; i <= n; i++) {
|
||||||
|
for (int j = 1; j <= sum; j++) {
|
||||||
|
if (arr[i - 1] <= j) {
|
||||||
|
isSum[i][j] = isSum[i - 1][j] || isSum[i - 1][j - arr[i - 1]];
|
||||||
|
} else {
|
||||||
|
isSum[i][j] = isSum[i - 1][j];
|
||||||
}
|
}
|
||||||
for (int j = arr[i - 1]; j <= sum; j++) {
|
|
||||||
isSum[i][j] = (isSum[i + 1][j] || isSum[i + 1][j - arr[i - 1]]);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return isSum[1][sum];
|
return isSum[n][sum];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,24 @@
|
|||||||
|
package com.thealgorithms.dynamicprogramming;
|
||||||
|
|
||||||
|
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||||
|
|
||||||
|
import java.util.stream.Stream;
|
||||||
|
import org.junit.jupiter.params.ParameterizedTest;
|
||||||
|
import org.junit.jupiter.params.provider.MethodSource;
|
||||||
|
|
||||||
|
class SubsetSumTest {
|
||||||
|
|
||||||
|
record TestCase(int[] arr, int sum, boolean expected) {
|
||||||
|
}
|
||||||
|
|
||||||
|
@ParameterizedTest
|
||||||
|
@MethodSource("provideTestCases")
|
||||||
|
void testSubsetSum(TestCase testCase) {
|
||||||
|
assertEquals(testCase.expected(), SubsetSum.subsetSum(testCase.arr(), testCase.sum()));
|
||||||
|
}
|
||||||
|
|
||||||
|
private static Stream<TestCase> provideTestCases() {
|
||||||
|
return Stream.of(new TestCase(new int[] {50, 4, 10, 15, 34}, 64, true), new TestCase(new int[] {50, 4, 10, 15, 34}, 99, true), new TestCase(new int[] {50, 4, 10, 15, 34}, 5, false), new TestCase(new int[] {50, 4, 10, 15, 34}, 66, false), new TestCase(new int[] {}, 0, true),
|
||||||
|
new TestCase(new int[] {1, 2, 3}, 6, true), new TestCase(new int[] {1, 2, 3}, 7, false), new TestCase(new int[] {3, 34, 4, 12, 5, 2}, 9, true));
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user