parent
a7f7f0bf19
commit
009a290767
@ -0,0 +1,85 @@
|
|||||||
|
package class22;
|
||||||
|
|
||||||
|
public class Code03_SplitNumber {
|
||||||
|
|
||||||
|
// n为正数
|
||||||
|
public static int ways(int n) {
|
||||||
|
if (n < 0) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
if (n == 1) {
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
return process(1, n);
|
||||||
|
}
|
||||||
|
|
||||||
|
// 上一个拆出来的数是pre
|
||||||
|
// 还剩rest需要去拆
|
||||||
|
// 返回拆解的方法数
|
||||||
|
public static int process(int pre, int rest) {
|
||||||
|
if (rest == 0) {
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
if (pre > rest) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
int ways = 0;
|
||||||
|
for (int first = pre; first <= rest; first++) {
|
||||||
|
ways += process(first, rest - first);
|
||||||
|
}
|
||||||
|
return ways;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static int dp1(int n) {
|
||||||
|
if (n < 0) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
if (n == 1) {
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
int[][] dp = new int[n + 1][n + 1];
|
||||||
|
for (int pre = 1; pre <= n; pre++) {
|
||||||
|
dp[pre][0] = 1;
|
||||||
|
dp[pre][pre] = 1;
|
||||||
|
}
|
||||||
|
for (int pre = n - 1; pre >= 1; pre--) {
|
||||||
|
for (int rest = pre + 1; rest <= n; rest++) {
|
||||||
|
int ways = 0;
|
||||||
|
for (int first = pre; first <= rest; first++) {
|
||||||
|
ways += dp[first][rest - first];
|
||||||
|
}
|
||||||
|
dp[pre][rest] = ways;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return dp[1][n];
|
||||||
|
}
|
||||||
|
|
||||||
|
public static int dp2(int n) {
|
||||||
|
if (n < 0) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
if (n == 1) {
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
int[][] dp = new int[n + 1][n + 1];
|
||||||
|
for (int pre = 1; pre <= n; pre++) {
|
||||||
|
dp[pre][0] = 1;
|
||||||
|
dp[pre][pre] = 1;
|
||||||
|
}
|
||||||
|
for (int pre = n - 1; pre >= 1; pre--) {
|
||||||
|
for (int rest = pre + 1; rest <= n; rest++) {
|
||||||
|
dp[pre][rest] = dp[pre + 1][rest];
|
||||||
|
dp[pre][rest] += dp[pre][rest - pre];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return dp[1][n];
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void main(String[] args) {
|
||||||
|
int test = 39;
|
||||||
|
System.out.println(ways(test));
|
||||||
|
System.out.println(dp1(test));
|
||||||
|
System.out.println(dp2(test));
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -1,8 +1,8 @@
|
|||||||
package class22;
|
package class23;
|
||||||
|
|
||||||
import java.util.TreeSet;
|
import java.util.TreeSet;
|
||||||
|
|
||||||
public class Code03_SplitSumClosed {
|
public class Code01_SplitSumClosed {
|
||||||
|
|
||||||
public static int right(int[] arr) {
|
public static int right(int[] arr) {
|
||||||
if (arr == null || arr.length < 2) {
|
if (arr == null || arr.length < 2) {
|
@ -1,8 +1,8 @@
|
|||||||
package class22;
|
package class23;
|
||||||
|
|
||||||
import java.util.TreeSet;
|
import java.util.TreeSet;
|
||||||
|
|
||||||
public class Code04_SplitSumClosedSizeHalf {
|
public class Code02_SplitSumClosedSizeHalf {
|
||||||
|
|
||||||
public static int right(int[] arr) {
|
public static int right(int[] arr) {
|
||||||
if (arr == null || arr.length < 2) {
|
if (arr == null || arr.length < 2) {
|
@ -1,6 +1,6 @@
|
|||||||
package class23;
|
package class23;
|
||||||
|
|
||||||
public class Code01_NQueens {
|
public class Code03_NQueens {
|
||||||
|
|
||||||
public static int num1(int n) {
|
public static int num1(int n) {
|
||||||
if (n < 1) {
|
if (n < 1) {
|
Loading…
Reference in new issue