给定一个数组A和两个整数M和K ,任务是检查并打印“是”,如果原始数组可以通过对数组元素与“ M ”执行精确的“ K ”次按位异或运算来保留。否则打印“否”。
注意: XOR 操作可以对数组的任何元素执行 0 次或多次。
例子:
Input: A[] = {1, 2, 3, 4}, M = 5, K = 6
Output: Yes
Explanation:
If the XOR is performed on 1st element, A[0], for 6 times, we get A[0] back. Therefore, the original array is retained.
Input: A[] = {5, 9, 3, 4, 5}, M = 5, K = 3
Output: No
Explanation:
The original array cant be retained after performing odd number of XOR operations.
方法:这个问题可以使用 XOR 属性解决
A XOR B = C and C XOR B = A
可以看出:
- 如果对任意正数进行偶数次异或运算,则可以保留原数。
- 但是,0 是一个例外。如果奇数或偶数都对0进行异或运算,则可以保留原数。
- 因此,如果 K 为偶数且 M 为 0 ,则答案将始终为 Yes。
- 如果 K 为奇数且数组中不存在 0 ,则答案将始终为否。
- 如果 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