📌  相关文章
📜  找到删除奇数或替换偶数数组元素的游戏的获胜者

📅  最后修改于: 2021-05-17 02:12:27             🧑  作者: Mango

给定一个由N个整数组成的数组arr [] 。两名玩家(玩家1玩家2 )依次进行游戏,其中一名玩家可以执行以下两个动作之一:

  • 将偶数数组元素转换为任何其他整数。
  • 删除奇数数组元素。

无法采取任何行动的玩家将输掉比赛。任务是打印游戏的获胜者。如果游戏可能永远持续下去,请打印-1

例子:

方法:请按照以下步骤解决问题:

  • 遍历数组。
  • 计算数组中存在的偶数和奇数元素的数量。
  • 如果偶数个元素的数量为零,请执行以下操作:
    • 如果奇数为偶数,则玩家2将赢得比赛。
    • 否则,玩家1将赢得比赛。
  • 如果奇数计数为奇数且阵列中仅存在一个偶数元素,则玩家1将赢得比赛。
  • 否则,每次都会有抽奖。

下面是上述方法的实现:

C++
// C++ program for the above approach
#include 
using namespace std;
 
// Function to evaluate the
// winner of the game
void findWinner(int arr[], int N)
{
    // Stores count of odd
    // array elements
    int odd = 0;
 
    // Stores count of even
    // array elements
    int even = 0;
 
    // Traverse the array
    for (int i = 0; i < N; i++) {
 
        // If arraay element is odd
        if (arr[i] % 2 == 1) {
 
            odd++;
        }
        // Otherwise
        else {
 
            even++;
        }
    }
 
    // If count of even is zero
    if (even == 0) {
 
        // If count of odd is even
        if (odd % 2 == 0) {
 
            cout << "Player 2" << endl;
        }
 
        // If count of odd is odd
        else if (odd % 2 == 1) {
 
            cout << "Player 1" << endl;
        }
    }
 
    // If count of odd is odd and
    // count of even is one
    else if (even == 1 && odd % 2 == 1) {
 
        cout << "Player 1" << endl;
    }
 
    // Otherwise
    else {
 
        cout << -1 << endl;
    }
}
 
// Driver Code
int main()
{
    int arr[] = { 3, 1, 9, 7 };
    int N = sizeof(arr)
            / sizeof(arr[0]);
 
    findWinner(arr, N);
 
    return 0;
}


Java
// Java program for the above approach
import java.util.*;
 
class GFG{
    
// Function to evaluate the
// winner of the game
static void findWinner(int arr[], int N)
{
     
    // Stores count of odd
    // array elements
    int odd = 0;
 
    // Stores count of even
    // array elements
    int even = 0;
 
    // Traverse the array
    for(int i = 0; i < N; i++)
    {
         
        // If arraay element is odd
        if (arr[i] % 2 == 1)
        {
            odd++;
        }
         
        // Otherwise
        else
        {
            even++;
        }
    }
 
    // If count of even is zero
    if (even == 0)
    {
         
        // If count of odd is even
        if (odd % 2 == 0)
        {
            System.out.println("Player 2");
        }
 
        // If count of odd is odd
        else if (odd % 2 == 1)
        {
            System.out.println("Player 1");
        }
    }
 
    // If count of odd is odd and
    // count of even is one
    else if (even == 1 && odd % 2 == 1)
    {
        System.out.println("Player 1");
    }
 
    // Otherwise
    else
    {
        System.out.println(-1);
    }
}
 
// Driver Code
public static void main(String args[])
{
    int arr[] = { 3, 1, 9, 7 };
    int N = arr.length;
     
    findWinner(arr, N);
}
}
 
// This code is contributed by ipg2016107


Python3
# Python3 program for the above approach
 
# Function to evaluate the
# winner of the game
def findWinner(arr, N):
     
    # Stores count of odd
    # array elements
    odd = 0
 
    # Stores count of even
    # array elements
    even = 0
 
    # Traverse the array
    for i in range(N):
         
        # If arraay element is odd
        if (arr[i] % 2 == 1):
            odd += 1
 
        # Otherwise
        else:
            even += 1
 
    # If count of even is zero
    if (even == 0):
         
        # If count of odd is even
        if (odd % 2 == 0):
            print("Player 2")
 
        # If count of odd is odd
        elif (odd % 2 == 1):
            print("Player 1")
 
    # If count of odd is odd and
    # count of even is one
    elif (even == 1 and odd % 2 == 1):
        print("Player 1")
 
    # Otherwise
    else:
        print(-1)
 
# Driver code
if __name__ == '__main__':
 
    arr = [ 3, 1, 9, 7 ]
    N = len(arr)
 
    findWinner(arr, N)
 
# This code is contributed by Shivam Singh


C#
// C# program for the above approach
using System;
 
class GFG{
    
// Function to evaluate the
// winner of the game
static void findWinner(int []arr, int N)
{
     
    // Stores count of odd
    // array elements
    int odd = 0;
 
    // Stores count of even
    // array elements
    int even = 0;
 
    // Traverse the array
    for(int i = 0; i < N; i++)
    {
         
        // If arraay element is odd
        if (arr[i] % 2 == 1)
        {
            odd++;
        }
         
        // Otherwise
        else
        {
            even++;
        }
    }
 
    // If count of even is zero
    if (even == 0)
    {
         
        // If count of odd is even
        if (odd % 2 == 0)
        {
            Console.WriteLine("Player 2");
        }
 
        // If count of odd is odd
        else if (odd % 2 == 1)
        {
            Console.WriteLine("Player 1");
        }
    }
 
    // If count of odd is odd and
    // count of even is one
    else if (even == 1 && odd % 2 == 1)
    {
        Console.WriteLine("Player 1");
    }
 
    // Otherwise
    else
    {
        Console.WriteLine(-1);
    }
}
 
// Driver Code
public static void Main()
{
    int []arr = { 3, 1, 9, 7 };
    int N = arr.Length;
     
    findWinner(arr, N);
}
}
 
// This code is contributed by bgangwar59


输出:
Player 2










时间复杂度: O(N)
辅助空间:O(1)