parent
71c6ecb5cc
commit
9b66c59d72
@ -0,0 +1,116 @@
|
||||
package class18;
|
||||
|
||||
public class Code02_CardsInLine {
|
||||
|
||||
// 根据规则,返回获胜者的分数
|
||||
public static int win1(int[] arr) {
|
||||
if (arr == null || arr.length == 0) {
|
||||
return 0;
|
||||
}
|
||||
int first = f1(arr, 0, arr.length - 1);
|
||||
int second = g1(arr, 0, arr.length - 1);
|
||||
return Math.max(first, second);
|
||||
}
|
||||
|
||||
// arr[L..R],先手获得的最好分数返回
|
||||
public static int f1(int[] arr, int L, int R) {
|
||||
if (L == R) {
|
||||
return arr[L];
|
||||
}
|
||||
int p1 = arr[L] + g1(arr, L + 1, R);
|
||||
int p2 = arr[R] + g1(arr, L, R - 1);
|
||||
return Math.max(p1, p2);
|
||||
}
|
||||
|
||||
// // arr[L..R],后手获得的最好分数返回
|
||||
public static int g1(int[] arr, int L, int R) {
|
||||
if (L == R) {
|
||||
return 0;
|
||||
}
|
||||
int p1 = f1(arr, L + 1, R); // 对手拿走了L位置的数
|
||||
int p2 = f1(arr, L, R - 1); // 对手拿走了R位置的数
|
||||
return Math.min(p1, p2);
|
||||
}
|
||||
|
||||
public static int win2(int[] arr) {
|
||||
if (arr == null || arr.length == 0) {
|
||||
return 0;
|
||||
}
|
||||
int N = arr.length;
|
||||
int[][] fmap = new int[N][N];
|
||||
int[][] gmap = new int[N][N];
|
||||
for (int i = 0; i < N; i++) {
|
||||
for (int j = 0; j < N; j++) {
|
||||
fmap[i][j] = -1;
|
||||
gmap[i][j] = -1;
|
||||
}
|
||||
}
|
||||
int first = f2(arr, 0, arr.length - 1, fmap, gmap);
|
||||
int second = g2(arr, 0, arr.length - 1, fmap, gmap);
|
||||
return Math.max(first, second);
|
||||
}
|
||||
|
||||
// arr[L..R],先手获得的最好分数返回
|
||||
public static int f2(int[] arr, int L, int R, int[][] fmap, int[][] gmap) {
|
||||
if (fmap[L][R] != -1) {
|
||||
return fmap[L][R];
|
||||
}
|
||||
int ans = 0;
|
||||
if (L == R) {
|
||||
ans = arr[L];
|
||||
} else {
|
||||
int p1 = arr[L] + g2(arr, L + 1, R, fmap, gmap);
|
||||
int p2 = arr[R] + g2(arr, L, R - 1, fmap, gmap);
|
||||
ans = Math.max(p1, p2);
|
||||
}
|
||||
fmap[L][R] = ans;
|
||||
return ans;
|
||||
}
|
||||
|
||||
// // arr[L..R],后手获得的最好分数返回
|
||||
public static int g2(int[] arr, int L, int R, int[][] fmap, int[][] gmap) {
|
||||
if (gmap[L][R] != -1) {
|
||||
return gmap[L][R];
|
||||
}
|
||||
int ans = 0;
|
||||
if (L != R) {
|
||||
int p1 = f2(arr, L + 1, R, fmap, gmap); // 对手拿走了L位置的数
|
||||
int p2 = f2(arr, L, R - 1, fmap, gmap); // 对手拿走了R位置的数
|
||||
ans = Math.min(p1, p2);
|
||||
}
|
||||
gmap[L][R] = ans;
|
||||
return ans;
|
||||
}
|
||||
|
||||
public static int win3(int[] arr) {
|
||||
if (arr == null || arr.length == 0) {
|
||||
return 0;
|
||||
}
|
||||
int N = arr.length;
|
||||
int[][] fmap = new int[N][N];
|
||||
int[][] gmap = new int[N][N];
|
||||
for (int i = 0; i < N; i++) {
|
||||
fmap[i][i] = arr[i];
|
||||
}
|
||||
for (int startCol = 1; startCol < N; startCol++) {
|
||||
int L = 0;
|
||||
int R = startCol;
|
||||
while (R < N) {
|
||||
fmap[L][R] = Math.max(arr[L] + gmap[L + 1][R], arr[R] + gmap[L][R - 1]);
|
||||
gmap[L][R] = Math.min(fmap[L + 1][R], fmap[L][R - 1]);
|
||||
L++;
|
||||
R++;
|
||||
}
|
||||
}
|
||||
return Math.max(fmap[0][N - 1], gmap[0][N - 1]);
|
||||
}
|
||||
|
||||
public static void main(String[] args) {
|
||||
int[] arr = { 5, 7, 4, 5, 8, 1, 6, 0, 3, 4, 6, 1, 7 };
|
||||
System.out.println(win1(arr));
|
||||
System.out.println(win2(arr));
|
||||
System.out.println(win3(arr));
|
||||
|
||||
}
|
||||
|
||||
}
|
@ -1,56 +0,0 @@
|
||||
package class18;
|
||||
|
||||
public class Code03_CardsInLine {
|
||||
|
||||
public static int win1(int[] arr) {
|
||||
if (arr == null || arr.length == 0) {
|
||||
return 0;
|
||||
}
|
||||
return Math.max(f(arr, 0, arr.length - 1), s(arr, 0, arr.length - 1));
|
||||
}
|
||||
|
||||
public static int f(int[] arr, int L, int R) {
|
||||
if (L == R) {
|
||||
return arr[L];
|
||||
}
|
||||
return Math.max(arr[L] + s(arr, L + 1, R), arr[R] + s(arr, L, R - 1));
|
||||
}
|
||||
|
||||
public static int s(int[] arr, int L, int R) {
|
||||
if (L == R) {
|
||||
return 0;
|
||||
}
|
||||
return Math.min(f(arr, L + 1, R), f(arr, L, R - 1));
|
||||
}
|
||||
|
||||
public static int windp(int[] arr) {
|
||||
if (arr == null || arr.length == 0) {
|
||||
return 0;
|
||||
}
|
||||
int N = arr.length;
|
||||
int[][] f = new int[N][N];
|
||||
int[][] s = new int[N][N];
|
||||
for (int i = 0; i < N; i++) {
|
||||
f[i][i] = arr[i];
|
||||
}
|
||||
for (int col = 1; col < N; col++) {
|
||||
int L = 0;
|
||||
int R = col;
|
||||
while (L < N && R < N) {
|
||||
f[L][R] = Math.max(arr[L] + s[L + 1][R], arr[R] + s[L][R - 1]);
|
||||
s[L][R] = Math.min(f[L + 1][R], f[L][R - 1]);
|
||||
L++;
|
||||
R++;
|
||||
}
|
||||
}
|
||||
return Math.max(f[0][N - 1], s[0][N - 1]);
|
||||
}
|
||||
|
||||
public static void main(String[] args) {
|
||||
int[] arr = { 5, 7, 4, 5, 8, 1, 6, 0, 3, 4, 6, 1, 7 };
|
||||
System.out.println(win1(arr));
|
||||
System.out.println(windp(arr));
|
||||
|
||||
}
|
||||
|
||||
}
|
@ -1,6 +1,6 @@
|
||||
package class18;
|
||||
|
||||
public class Code02_Knapsack {
|
||||
public class Code03_Knapsack {
|
||||
|
||||
public static int getMaxValue(int[] w, int[] v, int bag) {
|
||||
return process(w, v, 0, 0, bag);
|
Loading…
Reference in new issue