Java Program to Maximize count of corresponding same elements in given Arrays by Rotation Last Updated : 25 Jan, 2022 Comments Improve Suggest changes Like Article Like Report Given two arrays arr1[] and arr2[] of N integers and array arr1[] has distinct elements. The task is to find the maximum count of corresponding same elements in the given arrays by performing cyclic left or right shift on array arr1[]. Examples: Input: arr1[] = { 6, 7, 3, 9, 5 }, arr2[] = { 7, 3, 9, 5, 6 } Output: 5 Explanation: By performing cyclic left shift on array arr1[] by 1. Updated array arr1[] = {7, 3, 9, 5, 6}. This rotation contains a maximum number of equal elements between array arr1[] and arr2[].Input: arr1[] = {1, 3, 2, 4}, arr2[] = {4, 2, 3, 1} Output: 2 Explanation: By performing cyclic left shift on array arr1[] by 1. Updated array arr1[] = {3, 2, 4, 1} This rotation contains a maximum number of equal elements between array arr1[] and arr2[]. Approach: This problem can be solved using Greedy Approach. Below are the steps: Store the position of all the elements of the array arr2[] in an array(say store[]).For each element in the array arr1[], do the following: Find the difference(say diff) between the position of the current element in arr2[] with the position in arr1[].If diff is less than 0 then update diff to (N - diff).Store the frequency of current difference diff in a map.After the above steps, the maximum frequency stored in map is the maximum number of equal elements after rotation on arr1[]. Below is the implementation of the above approach: Java // Java program of the above approach import java.util.*; class GFG{ // Function that prints maximum // equal elements static void maximumEqual(int a[], int b[], int n) { // Vector to store the index // of elements of array b int store[] = new int[(int) 1e5]; // Storing the positions of // array B for (int i = 0; i < n; i++) { store[b[i]] = i + 1; } // frequency array to keep count // of elements with similar // difference in distances int ans[] = new int[(int) 1e5]; // Iterate through all element in arr1[] for (int i = 0; i < n; i++) { // Calculate number of // shift required to // make current element // equal int d = Math.abs(store[a[i]] - (i + 1)); // If d is less than 0 if (store[a[i]] < i + 1) { d = n - d; } // Store the frequency // of current diff ans[d]++; } int finalans = 0; // Compute the maximum frequency // stored for (int i = 0; i < 1e5; i++) finalans = Math.max(finalans, ans[i]); // Printing the maximum number // of equal elements System.out.print(finalans + " "); } // Driver Code public static void main(String[] args) { // Given two arrays int A[] = { 6, 7, 3, 9, 5 }; int B[] = { 7, 3, 9, 5, 6 }; int size = A.length; // Function Call maximumEqual(A, B, size); } } // This code is contributed by sapnasingh4991 Output: 5 Time Complexity: O(N) Auxiliary Space: O(N) Please refer complete article on Maximize count of corresponding same elements in given Arrays by Rotation for more details! Comment More infoAdvertise with us Next Article Java Program to Maximize count of corresponding same elements in given Arrays by Rotation K kartik Follow Improve Article Tags : Java Greedy Java Programs DSA Arrays rotation +2 More Practice Tags : ArraysGreedyJava Similar Reads Java Program to Maximize count of corresponding same elements in given permutations using cyclic rotations Given two permutations P1 and P2 of numbers from 1 to N, the task is to find the maximum count of corresponding same elements in the given permutations by performing a cyclic left or right shift on P1. Examples: Input: P1 = [5 4 3 2 1], P2 = [1 2 3 4 5] Output: 1 Explanation: We have a matching pai 4 min read Java Program to Modify given array to a non-decreasing array by rotation Given an array arr[] of size N (consisting of duplicates), the task is to check if the given array can be converted to a non-decreasing array by rotating it. If it's not possible to do so, then print "No". Otherwise, print "Yes". Examples: Input: arr[] = {3, 4, 5, 1, 2}Output: YesExplanation: After 2 min read Java Program for Queries to find maximum sum contiguous subarrays of given length in a rotating array Given an array arr[] of N integers and Q queries of the form {X, Y} of the following two types: If X = 1, rotate the given array to the left by Y positions.If X = 2, print the maximum sum subarray of length Y in the current state of the array. Examples: Input: N = 5, arr[] = {1, 2, 3, 4, 5}, Q = 2, 5 min read Java Program to Find maximum element of each row in a matrix Given a matrix, the task is to find the maximum element of each row. Examples: Input : [1, 2, 3] [1, 4, 9] [76, 34, 21] Output : 3 9 76 Input : [1, 2, 3, 21] [12, 1, 65, 9] [1, 56, 34, 2] Output : 21 65 56 Approach : Approach is very simple. The idea is to run the loop for no_of_rows. Check each ele 2 min read Java Program for Maximum sum of i*arr[i] among all rotations of a given array Given an array arr[] of n integers, find the maximum that maximizes the sum of the value of i*arr[i] where i varies from 0 to n-1. Examples: Input: arr[] = {8, 3, 1, 2} Output: 29 Explanation: Lets look at all the rotations, {8, 3, 1, 2} = 8*0 + 3*1 + 1*2 + 2*3 = 11 {3, 1, 2, 8} = 3*0 + 1*1 + 2*2 + 6 min read Like