📌  相关文章
📜  检查与 M 执行 XOR 恰好 K 次后是否保留原始 Array

📅  最后修改于: 2021-09-06 05:57:18             🧑  作者: Mango

给定一个数组A和两个整数MK ,任务是检查并打印“”,如果原始数组可以通过对数组元素与“ M ”执行精确的“ K ”次按位异或运算来保留。否则打印“”。
注意: XOR 操作可以对数组的任何元素执行 0 次或多次。
例子:

方法:这个问题可以使用 XOR 属性解决

可以看出:

  1. 如果对任意正数进行偶数次异或运算,则可以保留原数。
  2. 但是,0 是一个例外。如果奇数或偶数都对0进行异或运算,则可以保留原数。
  3. 因此,如果 K 为偶数且 M 为 0 ,则答案将始终为 Yes。
  4. 如果 K 为奇数且数组中不存在 0 ,则答案将始终为否。
  5. 如果 K 是奇数并且数组中 0 的计数至少为 1 ,则答案为 Yes。

下面是上述方法的实现:

C++
// C++ implementation for the
// above mentioned problem
 
#include 
using namespace std;
 
// Function to check if original Array
// can be retained by performing XOR
// with M exactly K times
string check(int Arr[], int n,
             int M, int K)
{
    int flag = 0;
 
    // Check if O is present or not
    for (int i = 0; i < n; i++) {
        if (Arr[i] == 0)
            flag = 1;
    }
 
    // If K is odd and 0 is not present
    // then the answer will always be No.
    if (K % 2 != 0
        && flag == 0)
        return "No";
 
    // Else it will be Yes
    else
        return "Yes";
}
 
// Driver Code
int main()
{
 
    int Arr[] = { 1, 1, 2, 4, 7, 8 };
    int M = 5;
    int K = 6;
    int n = sizeof(Arr) / sizeof(Arr[0]);
 
    cout << check(Arr, n, M, K);
    return 0;
}


Java
import java.util.*;
 
class GFG{
 
// Function to check if original Array
// can be retained by performing XOR
// with M exactly K times
static String check(int []Arr, int n,
            int M, int K)
{
    int flag = 0;
 
    // Check if O is present or not
    for (int i = 0; i < n; i++) {
        if (Arr[i] == 0)
            flag = 1;
    }
 
    // If K is odd and 0 is not present
    // then the answer will always be No.
    if (K % 2 != 0
        && flag == 0)
        return "No";
 
    // Else it will be Yes
    else
        return "Yes";
}
 
// Driver Code
public static void main(String args[])
{
 
    int []Arr = { 1, 1, 2, 4, 7, 8 };
    int M = 5;
    int K = 6;
    int n = Arr.length;
 
    System.out.println(check(Arr, n, M, K));
}
}
 
// This code is contributed by Surendra_Gangwar


Python3
# Python3 implementation for the
# above mentioned problem
  
# Function to check if original Array
# can be retained by performing XOR
# with M exactly K times
def check(Arr,  n, M,  K):
    flag = 0
  
    # Check if O is present or not
    for i in range(n):
        if (Arr[i] == 0):
            flag = 1
     
    # If K is odd and 0 is not present
    # then the answer will always be No.
    if (K % 2 != 0 and flag == 0):
        return "No"
  
    # Else it will be Yes
    else:
        return "Yes";
  
# Driver Code
if __name__=='__main__':
 
    Arr = [ 1, 1, 2, 4, 7, 8 ]
    M = 5;
    K = 6;
    n = len(Arr);
  
    print(check(Arr, n, M, K))
 
# This article contributed by Princi Singh


C#
// C# implementation for the
// above mentioned problem
using System;
   
class GFG
{
   
 
// Function to check if original Array
// can be retained by performing XOR
// with M exactly K times
static String check(int []Arr, int n,int M, int K)
{
    int flag = 0;
 
    // Check if O is present or not
    for (int i = 0; i < n; i++) {
        if (Arr[i] == 0)
            flag = 1;
    }
 
    // If K is odd and 0 is not present
    // then the answer will always be No.
    if (K % 2 != 0
        && flag == 0)
        return "No";
 
    // Else it will be Yes
    else
        return "Yes";
}
 
// Driver code
public static void Main(String[] args)
{
 
    int []Arr = { 1, 1, 2, 4, 7, 8 };
    int M = 5;
    int K = 6;
    int n = Arr.Length;
 
    Console.Write(check(Arr, n, M, K));
}
}
 
// This code is contributed by shivanisinghss2110


Javascript


输出:
Yes

如果您想与行业专家一起参加直播课程,请参阅Geeks Classes Live