📌  相关文章
📜  来自奇数长度子数组的奇数索引元素的最小翻转,以使两个给定的数组相等

📅  最后修改于: 2021-05-13 22:57:32             🧑  作者: Mango

给定两个大小为N的二进制数组X []Y [] ,任务是通过选择奇数长度的任何子数组并从数组中翻转所有奇数索引元素的最小操作数,将数组X []转换为数组Y [] 。子数组。

例子:

方法:想法是分别计算偶数和奇数位置的操作。请按照以下步骤解决问题:

  • 将变量C初始化为0以存储操作计数。
  • 在奇数位置遍历数组X []元素,并获得一个计数器计数= 0。
    • 检查X [i]Y [i]之间的连续不相等元素,并每次将计数器计数增加1
    • X [i]Y [i]相等时,将全局C增大以使运算增加1,因为在一个运算中,所有奇数位置都可以等于Y。
  • 类似地,遍历偶数位置的数组X []元素,并再次获得计数器计数= 0。
    • 检查X [i]Y [i]之间的连续不相等元素,并每次将计数器计数增加1
    • X [i]Y [i]相等时,增加全局计数器C,以将操作增加1
  • 完成上述步骤后,打印C的值作为所需操作的结果计数。

下面是上述方法的实现:

C++
// C++ program for the above approach
 
#include 
using namespace std;
 
// Function to find the minimum flip
// of subarrays required at alternate
// index to make binary arrays equals
void minOperation(int X[], int Y[],
                  int n)
{
    // Stores count of total operations
    int C = 0;
 
    // Stores count of consecutive
    // unequal elements
    int count = 0;
 
    // Loop to run on odd positions
    for (int i = 1; i < n; i = i + 2) {
 
        if (X[i] != Y[i]) {
            count++;
        }
        else {
 
            // Incrementing the
            // global counter
            if (count != 0)
                C++;
 
            // Change count to 0
            count = 0;
        }
    }
 
    // If all last elements are equal
    if (count != 0)
        C++;
 
    count = 0;
 
    // Loop to run on even positions
    for (int i = 0; i < n; i = i + 2) {
 
        if (X[i] != Y[i]) {
            count++;
        }
        else {
 
            // Incrementing the
            // global counter
            if (count != 0)
                C++;
 
            // Change count to 0
            count = 0;
        }
    }
 
    if (count != 0)
        C++;
 
    // Print the minimum operations
    cout << C;
}
 
// Driver Code
int main()
{
    int X[] = { 1, 0, 0, 0, 0, 1 };
    int Y[] = { 1, 1, 0, 1, 1, 1 };
    int N = sizeof(X) / sizeof(X[0]);
 
    // Function Call
    minOperation(X, Y, N);
 
    return 0;
}


Java
// Java program for the above approach
import java.util.*;
    
class GFG{
    
// Function to find the minimum flip
// of subarrays required at alternate
// index to make binary arrays equals
static void minOperation(int X[], int Y[],
                         int n)
{
     
    // Stores count of total operations
    int C = 0;
  
    // Stores count of consecutive
    // unequal elements
    int count = 0;
  
    // Loop to run on odd positions
    for(int i = 1; i < n; i = i + 2)
    {
         
        if (X[i] != Y[i])
        {
            count++;
        }
        else
        {
             
            // Incrementing the
            // global counter
            if (count != 0)
                C++;
  
            // Change count to 0
            count = 0;
        }
    }
  
    // If all last elements are equal
    if (count != 0)
        C++;
  
    count = 0;
  
    // Loop to run on even positions
    for(int i = 0; i < n; i = i + 2)
    {
        if (X[i] != Y[i])
        {
            count++;
        }
        else
        {
             
            // Incrementing the
            // global counter
            if (count != 0)
                C++;
  
            // Change count to 0
            count = 0;
        }
    }
  
    if (count != 0)
        C++;
  
    // Print the minimum operations
    System.out.print(C);
}
    
// Driver Code
public static void main(String[] args)
{
    int X[] = { 1, 0, 0, 0, 0, 1 };
    int Y[] = { 1, 1, 0, 1, 1, 1 };
    int N = X.length;
  
    // Function Call
    minOperation(X, Y, N);
}
}
 
// This code is contributed by susmitakundugoaldanga


Python3
# Python program for the above approach
 
# Function to find the minimum flip
# of subarrays required at alternate
# index to make binary arrays equals
def minOperation(X, Y, n):
   
    # Stores count of total operations
    C = 0;
 
    # Stores count of consecutive
    # unequal elements
    count = 0;
 
    # Loop to run on odd positions
    for i in range(1, n, 2):
 
        if (X[i] != Y[i]):
            count += 1;
        else:
 
            # Incrementing the
            # global counter
            if (count != 0):
                C += 1;
 
            # Change count to 0
            count = 0;
 
    # If all last elements are equal
    if (count != 0):
        C += 1;
 
    count = 0;
 
    # Loop to run on even positions
    for i in range(0, n, 2):
        if (X[i] != Y[i]):
            count += 1;
        else:
 
            # Incrementing the
            # global counter
            if (count != 0):
                C += 1;
 
            # Change count to 0
            count = 0;
 
    if (count != 0):
        C += 1;
 
    # Prthe minimum operations
    print(C);
 
# Driver Code
if __name__ == '__main__':
    X = [1, 0, 0, 0, 0, 1];
    Y = [1, 1, 0, 1, 1, 1];
    N = len(X);
 
    # Function Call
    minOperation(X, Y, N);
 
    # This code is contributed by 29AjayKumar


C#
// C# program for the above approach
using System;
 
class GFG{
    
// Function to find the minimum flip
// of subarrays required at alternate
// index to make binary arrays equals
static void minOperation(int []X, int []Y,
                         int n)
{
     
    // Stores count of total operations
    int C = 0;
  
    // Stores count of consecutive
    // unequal elements
    int count = 0;
  
    // Loop to run on odd positions
    for(int i = 1; i < n; i = i + 2)
    {
        if (X[i] != Y[i])
        {
            count++;
        }
        else
        {
             
            // Incrementing the
            // global counter
            if (count != 0)
                C++;
  
            // Change count to 0
            count = 0;
        }
    }
  
    // If all last elements are equal
    if (count != 0)
        C++;
  
    count = 0;
  
    // Loop to run on even positions
    for(int i = 0; i < n; i = i + 2)
    {
        if (X[i] != Y[i])
        {
            count++;
        }
        else
        {
             
            // Incrementing the
            // global counter
            if (count != 0)
                C++;
  
            // Change count to 0
            count = 0;
        }
    }
  
    if (count != 0)
        C++;
  
    // Print the minimum operations
    Console.Write(C);
}
    
// Driver Code
public static void Main(String[] args)
{
    int []X = { 1, 0, 0, 0, 0, 1 };
    int []Y = { 1, 1, 0, 1, 1, 1 };
    int N = X.Length;
     
    // Function Call
    minOperation(X, Y, N);
}
}
 
// This code is contributed by Amit Katiyar


Javascript


输出:
2

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