📜  游戏的最佳策略| DP-31

📅  最后修改于: 2021-05-04 19:28:30             🧑  作者: Mango

考虑一行n个硬币,其值为v1。 。 。 vn,其中n为偶数。我们通过交替轮流与对手进行比赛。在每个回合中,玩家从该行中选择第一个或最后一个硬币,将其从该行中永久删除,然后接收硬币的价值。确定如果我们先走,我们绝对可以赢得的最大金额。
注意:对手和用户一样聪明。

让我们用几个例子来了解这个问题:

  1. 5、3、7、10:用户收集的最大值为15(10 + 5)
  2. 8、15、3、7:用户收集的最大值为22(7 + 15)

在每一步中选择最佳方案是否能提供最佳解决方案?不。
在第二个示例中,这是完成游戏的方式:

  1. ……。用户选择8。
    ……。对手选择15。
    ……。用户选择7。
    ……。对手选择3。
    用户收集的总价值为15(8 + 7)
  2. ……。用户选择7。
    ……。对手选择8。
    ……。用户选择15。
    ……。对手选择3。
    用户收集的总价值为22(7 + 15)

因此,如果用户遵循第二游戏状态,尽管第一步并不是最好的,但可以收集最大值。

方法:由于双方都同样强大,因此双方都将尝试减少彼此获胜的可能性。现在让我们看看对手如何做到这一点。

有两种选择:

  • 用户选择值为’Vi’的’ith’硬币:对手选择第(i + 1)个硬币或第j个硬币。对手打算选择使使用者保持最小值的硬币。
    即,用户可以收集值Vi + min(F(i + 2,j),F(i + 1,j-1))

coinGame1

  • 用户选择值为’Vj’的’jth’硬币:对手选择’ith’硬币或’(j-1)’硬币。对手打算选择给用户留下最小值的硬币,即用户可以收集值Vj + min(F(i + 1,j-1),F(i,j-2))

coinGame2

以下是基于以上两个选择的递归解决方案。我们最多有两个选择。

F(i, j) represents the maximum value the user
can collect from i'th coin to j'th coin.

F(i, j) = Max(Vi + min(F(i+2, j), F(i+1, j-1) ), 
              Vj + min(F(i+1, j-1), F(i, j-2) ))
As user wants to maximise the number of coins. 

Base Cases
    F(i, j) = Vi           If j == i
    F(i, j) = max(Vi, Vj)  If j == i + 1
C++
// C++ program to find out
// maximum value from a given
// sequence of coins
#include 
using namespace std;
 
// Returns optimal value possible
// that a player can collect from
// an array of coins of size n.
// Note than n must be even
int optimalStrategyOfGame(
    int* arr, int n)
{
    // Create a table to store
    // solutions of subproblems
    int table[n][n];
 
    // Fill table using above
    // recursive formula. Note
    // that the table is filled
    // in diagonal fashion (similar
    // to http:// goo.gl/PQqoS),
    // from diagonal elements to
    // table[0][n-1] which is the result.
    for (int gap = 0; gap < n; ++gap) {
        for (int i = 0, j = gap; j < n; ++i, ++j) {
            // Here x is value of F(i+2, j),
            // y is F(i+1, j-1) and
            // z is F(i, j-2) in above recursive
            // formula
            int x = ((i + 2) <= j)
                        ? table[i + 2][j]
                        : 0;
            int y = ((i + 1) <= (j - 1))
                        ? table[i + 1][j - 1]
                        : 0;
            int z = (i <= (j - 2))
                        ? table[i][j - 2]
                        : 0;
 
            table[i][j] = max(
                arr[i] + min(x, y),
                arr[j] + min(y, z));
        }
    }
 
    return table[0][n - 1];
}
 
// Driver program to test above function
int main()
{
    int arr1[] = { 8, 15, 3, 7 };
    int n = sizeof(arr1) / sizeof(arr1[0]);
    printf("%d\n",
           optimalStrategyOfGame(arr1, n));
 
    int arr2[] = { 2, 2, 2, 2 };
    n = sizeof(arr2) / sizeof(arr2[0]);
    printf("%d\n",
           optimalStrategyOfGame(arr2, n));
 
    int arr3[] = { 20, 30, 2, 2, 2, 10 };
    n = sizeof(arr3) / sizeof(arr3[0]);
    printf("%d\n",
           optimalStrategyOfGame(arr3, n));
 
    return 0;
}


Java
// Java program to find out maximum
// value from a given sequence of coins
import java.io.*;
 
class GFG {
 
    // Returns optimal value possible
    // that a player can collect from
    // an array of coins of size n.
    // Note than n must be even
    static int optimalStrategyOfGame(
        int arr[], int n)
    {
        // Create a table to store
        // solutions of subproblems
        int table[][] = new int[n][n];
        int gap, i, j, x, y, z;
 
        // Fill table using above recursive formula.
        // Note that the tableis filled in diagonal
        // fashion (similar to http:// goo.gl/PQqoS),
        // from diagonal elements to table[0][n-1]
        // which is the result.
        for (gap = 0; gap < n; ++gap) {
            for (i = 0, j = gap; j < n; ++i, ++j) {
 
                // Here x is value of F(i+2, j),
                // y is F(i+1, j-1) and z is
                // F(i, j-2) in above recursive formula
                x = ((i + 2) <= j)
                        ? table[i + 2][j]
                        : 0;
                y = ((i + 1) <= (j - 1))
                        ? table[i + 1][j - 1]
                        : 0;
                z = (i <= (j - 2))
                        ? table[i][j - 2]
                        : 0;
 
                table[i][j] = Math.max(
                    arr[i] + Math.min(x, y),
                    arr[j] + Math.min(y, z));
            }
        }
 
        return table[0][n - 1];
    }
 
    // Driver program
    public static void main(String[] args)
    {
        int arr1[] = { 8, 15, 3, 7 };
        int n = arr1.length;
        System.out.println(
            ""
            + optimalStrategyOfGame(arr1, n));
 
        int arr2[] = { 2, 2, 2, 2 };
        n = arr2.length;
        System.out.println(
            ""
            + optimalStrategyOfGame(arr2, n));
 
        int arr3[] = { 20, 30, 2, 2, 2, 10 };
        n = arr3.length;
        System.out.println(
            ""
            + optimalStrategyOfGame(arr3, n));
    }
}
 
// This code is contributed by vt_m


Python3
# Python3 program to find out maximum
# value from a given sequence of coins
 
# Returns optimal value possible that
# a player can collect from an array
# of coins of size n. Note than n
# must be even
def optimalStrategyOfGame(arr, n):
     
    # Create a table to store
    # solutions of subproblems
    table = [[0 for i in range(n)]
                for i in range(n)]
 
    # Fill table using above recursive
    # formula. Note that the table is
    # filled in diagonal fashion
    # (similar to http://goo.gl / PQqoS),
    # from diagonal elements to
    # table[0][n-1] which is the result.
    for gap in range(n):
        for j in range(gap, n):
            i = j - gap
             
            # Here x is value of F(i + 2, j),
            # y is F(i + 1, j-1) and z is
            # F(i, j-2) in above recursive
            # formula
            x = 0
            if((i + 2) <= j):
                x = table[i + 2][j]
            y = 0
            if((i + 1) <= (j - 1)):
                y = table[i + 1][j - 1]
            z = 0
            if(i <= (j - 2)):
                z = table[i][j - 2]
            table[i][j] = max(arr[i] + min(x, y),
                              arr[j] + min(y, z))
    return table[0][n - 1]
 
# Driver Code
arr1 = [ 8, 15, 3, 7 ]
n = len(arr1)
print(optimalStrategyOfGame(arr1, n))
 
arr2 = [ 2, 2, 2, 2 ]
n = len(arr2)
print(optimalStrategyOfGame(arr2, n))
 
arr3 = [ 20, 30, 2, 2, 2, 10]
n = len(arr3)
print(optimalStrategyOfGame(arr3, n))
 
# This code is contibuted
# by sahilshelangia


C#
// C# program to find out maximum
// value from a given sequence of coins
using System;
 
public class GFG {
 
    // Returns optimal value possible that a player
    // can collect from an array of coins of size n.
    // Note than n must be even
    static int optimalStrategyOfGame(int[] arr, int n)
    {
        // Create a table to store solutions of subproblems
        int[, ] table = new int[n, n];
        int gap, i, j, x, y, z;
 
        // Fill table using above recursive formula.
        // Note that the tableis filled in diagonal
        // fashion (similar to http:// goo.gl/PQqoS),
        // from diagonal elements to table[0][n-1]
        // which is the result.
        for (gap = 0; gap < n; ++gap) {
            for (i = 0, j = gap; j < n; ++i, ++j) {
 
                // Here x is value of F(i+2, j),
                // y is F(i+1, j-1) and z is
                // F(i, j-2) in above recursive formula
                x = ((i + 2) <= j) ? table[i + 2, j] : 0;
                y = ((i + 1) <= (j - 1)) ? table[i + 1, j - 1] : 0;
                z = (i <= (j - 2)) ? table[i, j - 2] : 0;
 
                table[i, j] = Math.Max(arr[i] + Math.Min(x, y),
                                       arr[j] + Math.Min(y, z));
            }
        }
 
        return table[0, n - 1];
    }
 
    // Driver program
 
    static public void Main()
    {
        int[] arr1 = { 8, 15, 3, 7 };
        int n = arr1.Length;
        Console.WriteLine("" + optimalStrategyOfGame(arr1, n));
 
        int[] arr2 = { 2, 2, 2, 2 };
        n = arr2.Length;
        Console.WriteLine("" + optimalStrategyOfGame(arr2, n));
 
        int[] arr3 = { 20, 30, 2, 2, 2, 10 };
        n = arr3.Length;
        Console.WriteLine("" + optimalStrategyOfGame(arr3, n));
    }
}
 
// This code is contributed by ajit


PHP


Javascript


输出:

22
4
42

复杂度分析:

  • 时间复杂度: O(n 2 )。
    使用嵌套的for循环会将时间复杂度提高到n 2
  • 辅助空间: O(n 2 )。
    由于二维表用于存储状态。