📜  尼姆的改良版游戏

📅  最后修改于: 2021-04-22 03:22:49             🧑  作者: Mango

给定一个整数数组arr [] ,两个玩家AB正在玩一个游戏,其中A可以从数组中删除3的倍数的任意数量的非零元素。同样, B可以删除5的倍数。无法删除任何元素的玩家将输掉比赛。任务是如果A首先开始并且双方都以最佳状态进行比赛,则找到游戏的赢家。

例子:

方法:存放在movesA元素只被3整除的计数,在movesB元素只有5整除的数和元素双方在movesBoth整除。现在,

  • 如果moveBoth = 0,则两个玩家都只能删除按其各自数字可整除的元素,并且只有当moveA> moveBB时, A才能赢得比赛。
  • 如果moveBoth> 0,则为了发挥最佳效果, A将删除所有可被35整除的元素,这样B便不会从公共元素中删除任何元素,则仅当moveA + 1时A才是赢家>动作B

下面是上述方法的实现:

C++
// C++ implementation of the approach
#include 
using namespace std;
  
// Function to return the winner of the game
string getWinner(int arr[], int n)
{
    int movesA = 0, movesB = 0, movesBoth = 0;
  
    for (int i = 0; i < n; i++) {
  
        // Increment common moves
        if (arr[i] % 3 == 0 && arr[i] % 5 == 0)
            movesBoth++;
  
        // Increment A's moves
        else if (arr[i] % 3 == 0)
            movesA++;
  
        // Increment B's moves
        else if (arr[i] % 5 == 0)
            movesB++;
    }
  
    // If there are no common moves
    if (movesBoth == 0) {
        if (movesA > movesB)
            return "A";
        return "B";
    }
  
    // 1 is added because A can remove all the elements
    // that are part of the common moves in a single move
    if (movesA + 1 > movesB)
        return "A";
    return "B";
}
  
// Driver code
int main()
{
    int arr[] = { 1, 2, 3, 5, 6 };
    int n = sizeof(arr) / sizeof(arr[0]);
    cout << getWinner(arr, n);
  
    return 0;
}


Java
// Java implementation of the approach 
class GfG
{
  
    // Function to return the winner of the game 
    static String getWinner(int arr[], int n) 
    { 
        int movesA = 0, movesB = 0, movesBoth = 0; 
      
        for (int i = 0; i < n; i++) 
        { 
      
            // Increment common moves 
            if (arr[i] % 3 == 0 && arr[i] % 5 == 0) 
                movesBoth++; 
      
            // Increment A's moves 
            else if (arr[i] % 3 == 0) 
                movesA++; 
      
            // Increment B's moves 
            else if (arr[i] % 5 == 0) 
                movesB++; 
        } 
      
        // If there are no common moves 
        if (movesBoth == 0)
        { 
            if (movesA > movesB) 
                return "A"; 
            return "B"; 
        } 
      
        // 1 is added because A can remove 
        // all the elements that are part
        // of the common moves in a single move 
        if (movesA + 1 > movesB) 
            return "A"; 
        return "B"; 
    }
  
    // Driver code 
    public static void main(String []args)
    {
          
        int arr[] = { 1, 2, 3, 5, 6 }; 
        int n = arr.length; 
        System.out.println(getWinner(arr, n));
    }
}
  
// This code is contributed by Rituraj Jain


Python3
# Python3 implementation of the approach 
  
# Function to return the winner of the game 
def getWinner(arr, n): 
  
    movesA, movesB, movesBoth = 0, 0, 0
    for i in range(0, n): 
  
        # Increment common moves 
        if arr[i] % 3 == 0 and arr[i] % 5 == 0: 
            movesBoth += 1
  
        # Increment A's moves 
        elif arr[i] % 3 == 0: 
            movesA += 1
  
        # Increment B's moves 
        elif arr[i] % 5 == 0: 
            movesB += 1
  
    # If there are no common moves 
    if movesBoth == 0: 
        if movesA > movesB: 
            return "A"
        return "B"
  
    # 1 is added because A can 
    # remove all the elements 
    # that are part of the common
    # moves in a single move 
    if movesA + 1 > movesB: 
        return "A"
    return "B"
  
# Driver code 
if __name__ == "__main__":
  
    arr = [1, 2, 3, 5, 6] 
    n = len(arr) 
    print(getWinner(arr, n)) 
  
# This code is contributed by Rituraj Jain


C#
// C# implementation of the approach
using System;
  
class GfG
{
  
    // Function to return the winner of the game 
    static String getWinner(int []arr, int n) 
    { 
        int movesA = 0, movesB = 0, movesBoth = 0; 
      
        for (int i = 0; i < n; i++) 
        { 
      
            // Increment common moves 
            if (arr[i] % 3 == 0 && arr[i] % 5 == 0) 
                movesBoth++; 
      
            // Increment A's moves 
            else if (arr[i] % 3 == 0) 
                movesA++; 
      
            // Increment B's moves 
            else if (arr[i] % 5 == 0) 
                movesB++; 
        } 
      
        // If there are no common moves 
        if (movesBoth == 0)
        { 
            if (movesA > movesB) 
                return "A"; 
            return "B"; 
        } 
      
        // 1 is added because A can remove 
        // all the elements that are part
        // of the common moves in a single move 
        if (movesA + 1 > movesB) 
            return "A"; 
        return "B"; 
    }
  
    // Driver code 
    public static void Main(String []args)
    {
          
        int []arr = { 1, 2, 3, 5, 6 }; 
        int n = arr.Length; 
        Console.WriteLine(getWinner(arr, n));
    }
}
  
// This code is contributed by
// Rajput-Ji


PHP
 $movesB)
            return "A";
        return "B";
    }
  
    // 1 is added because A can remove all the elements
    // that are part of the common moves in a single move
    if ($movesA + 1 > $movesB)
        return "A";
    return "B";
}
  
    // Driver code
    $arr = array( 1, 2, 3, 5, 6 );
    $n = sizeof($arr) / sizeof($arr[0]);
    echo getWinner($arr, $n);
  
// This code is contributed by ajit.
?>


输出:
A