Table of Contents
Algorithm to find the longest subarray whose GCD is greater than 1
Syntax for finding the longest subarray whose GCD is greater than 1
method:
C program to find subarrays with longest common divisor greater than 1 using naive method
Example 2
Output
C program to find the greatest common divisor of an array greater than 1
in conclusion
Home Backend Development C++ The longest subarray whose greatest common divisor is greater than 1

The longest subarray whose greatest common divisor is greater than 1

Sep 18, 2023 pm 10:17 PM
greatest common divisor subarray

The longest subarray whose greatest common divisor is greater than 1

An array is a collection of similar data stored in adjacent memory locations in a contiguous manner. By defining the offset value as a specific base value for the database, it is easier to evaluate the specific position of each element. The base value for that particular index is zero, and the offset value is the difference between the two particular indices. A subarray is a part of a specific array and can be defined as a set of variables, labeled with multiple values. The longest subarray refers to an array in which all elements in the array are greater than K. The sum of the maximum sum subarray here is -

  • Less than

  • in a given dataset
  • Equal to the given data set.

  • Less than

  • in a given dataset

To find the length of the longest subarray, we just need to find the total number of 1's in a specific subarray. NOTE: The count should be greater than the count of zero. The greatest common divisor is a mathematical phenomenon in which we find the largest integer value that can divide each integer in the input with a zero remainder. The condition here is that "the greatest common divisor is greater than 1". This means that this particular number here only has at least one common divisor between the given inputs.

Input (array) : arr[] = {4, 3, 2, 2}
Output (after the process with sub-array operation) : 2
If we consider the subarray as {2, 2}, then we will get 2 as GCD. Which is > 1, is of maximum length.
Copy after login

Today in this article, we will learn how to find the longest subarray whose greatest common divisor is greater than 1 using the C programming environment.

Algorithm to find the longest subarray whose GCD is greater than 1

In this particular algorithm, we can find the greatest common value of the longest subarray containing greater than 1.

  • Step one - start.

  • Step 2 - Declare process variables.

  • Step 3 - Set and initialize it to zero value.

  • Step 4 - Create a function to evaluate the maximum length of this subarray.

  • Step 5 - Include a vector as argument.

  • Step 6 - Create a variable to get the answer.

  • Step 7 - Set and initialize it to zero value.

  • Step 8 - Store the value of the longest subarray with GCD > 1 value.

  • Step 9 - Iterate the loop to find the greatest common divisor of each subarray.

  • Step 10 - Replace the answer with the length value of the subarray.

  • Step 11 - If the greatest common divisor of the subarrays is greater than 1, save the answer.

  • Step 12 - Return the answer.

  • Step 13 - Otherwise, run the loop again and iterate.

  • Step 14 - Terminate after the process is complete.

Syntax for finding the longest subarray whose GCD is greater than 1

int n;
cin >> n;

const int MAX_NUM = 100 * 1000;
static int dp[MAX_NUM];

for(int i = 0; i < n; ++i){
   int x;
   cin >> x;

   int cur = 1;
   vector<int> d;
   for(int i = 2; i * i <= x; ++i){
      if(x % i == 0){
         cur = max(cur, dp[i] + 1);
         cur = max(cur, dp[x / i] + 1);
         d.push_back(i);
         d.push_back(x / i);
      }
   }
   if(x > 1){
      cur = max(cur, dp[x] + 1);
      d.push_back(x);
   }

    for(int j : d){
      dp[j] = cur;
   }
}
cout << *max_element(dp, dp + MAX_NUM) << endl;
Copy after login

By following the above algorithm, here we have written the possible syntax to find the GCD value with the longest subarray greater than 1.

method:

  • Method 1 − A C program to find the longest subarray whose greatest common divisor is greater than 1 through the naive method.

  • Method 2 - C program to find the greatest common divisor of an array greater than 1.

C program to find subarrays with longest common divisor greater than 1 using naive method

In this C code, we take the naive approach of finding the GCD value with the longest subarray greater than 1 by generating all possible subarrays of the given array.

The Chinese translation of

Example 1

is:

Example 1

#include <bits/stdc++.h>
using namespace std;
void maxSubarrayLen(int arr[], int n) {
	int maxLen = 0;
	for (int i = 0; i < n; i++) {
		int gcd = 0;
		for (int j = i; j < n; j++) {
			gcd = __gcd(gcd, arr[j]);
			if (gcd > 1)
				maxLen = max(maxLen, j - i + 1);
			else
			   break;
		}
	}
	cout << maxLen;
}
int main() {
	int arr[] = { 410, 16, 7, 180, 222, 10, 33 };
	int N = sizeof(arr) / sizeof(int);
	maxSubarrayLen(arr, N);

	return 0;
}
Copy after login

Output

3
Copy after login

C program to find the greatest common divisor of an array greater than 1

In this C code, we try to calculate the greatest common divisor and it has the ability to check if it is greater than 1.

Example 2

is translated as:

Example 2

#include<bits/stdc++.h>
using namespace std;
int gcd(int a, int b){
   if (a == 0)
      return b;
   return gcd(b%a, a);
}
void bestArray(int arr[], int n){
   bool even[n] = {false};
   int ans = 0;
   for(int i = 0; i < n; i++){
      ans = gcd(ans, arr[i]);
      if(arr[i] % 2 == 0)
         even[i] = true;
   }
   if(ans > 1)
      cout << 0 << endl;
   else {
      ans = 0;
      for(int i = 0; i < n-1; i++){
         if(!even[i]){
            even[i] = true;
            even[i+1] = true;
            if(arr[i+1]%2 != 0){
               ans+=1;
            }
            else
               ans+=2;
         }
      }
      if(!even[n-1]){
         ans+=2;
      }
      cout << ans << endl;
   }
}
int main(){
   int arr[] = {16, 10, 07, 81, 88, 32, 3, 42, 25};
   int n = 9;
   bestArray(arr, n);

   int arr1[] = {16, 7};
   n = 2;
   bestArray(arr1, n);

   int arr2[] = {10, 97, 2001};
   n = 3;
   bestArray(arr2, n);
}
Copy after login

Output

5
2
1
Copy after login

in conclusion

Through this discussion, we can find out how to find the longest subarray whose GCD is greater than 1. Hopefully, the algorithm and C code written will clearly show you how this process works in the real world.

The above is the detailed content of The longest subarray whose greatest common divisor is greater than 1. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What are the advantages and disadvantages of C++ function macro definition? What are the advantages and disadvantages of C++ function macro definition? Apr 11, 2024 pm 04:54 PM

Although function macro definition can simplify code and improve performance, it also has disadvantages: type insecurity, debugging difficulties, naming conflicts, and code redundancy. After weighing the pros and cons, it's crucial to make informed decisions when using function macros.

Detailed explanation of how to use C language to find the greatest common divisor Detailed explanation of how to use C language to find the greatest common divisor Feb 18, 2024 pm 11:10 PM

Detailed explanation of the method of finding the greatest common divisor in C language The greatest common divisor (GCD, Greatest Common Divisor) is a commonly used concept in mathematics, which refers to the largest divisor among several integers. In C language, we can use many methods to find the greatest common divisor. This article will detail several of these common methods and provide specific code examples. Method 1: Euclidean division is a classic method for finding the greatest common divisor of two numbers. Its basic idea is to continuously divide the divisors and remainders of two numbers

Detailed explanation of C++ function calling mechanism Detailed explanation of C++ function calling mechanism Apr 11, 2024 pm 02:12 PM

The function calling mechanism in C++ involves passing arguments to a function and executing its code, returning the result if one exists. There are two ways to pass parameters: pass by value (modifications are made inside the function) and pass by reference (modifications are reflected in the caller). In value passing, value modifications within the function do not affect the original value (such as printValue), while modifications in reference passing affect the original value (such as printReference).

In Java, find the maximum subarray sum of subarrays after splitting an array into subarrays based on a given query In Java, find the maximum subarray sum of subarrays after splitting an array into subarrays based on a given query Aug 29, 2023 am 11:21 AM

We have two arrays of integers, one with the calculated elements and the other with the split points required to split the array to generate subsets, we have to calculate the sum of each subset in each split and return the maximum subset Let's go through the example Understanding: - input −intarr[]=intarr[]={9,4,5,6,7}intsplitPoints[]={0,2,3,1}; output−the maximum subarray sum after each split [ 22,13,9,9] Explanation − Here we decompose the array according to its split points and get the maximum subset after each split and after the first split → {9} and {4,5,6,7 }>>The maximum sum of subarrays is -22 after the second split→{9},{4

Taking stock of the three countries killing the Bitcoin layer 1 protocol: BRC-20, Atomics, Runes Taking stock of the three countries killing the Bitcoin layer 1 protocol: BRC-20, Atomics, Runes Apr 23, 2024 pm 02:01 PM

Original author: 0xSea.eth At block height 840,000, Bitcoin will usher in its fourth halving, with the block reward reduced from 6.25 BTC to 3.125 BTC. This is a major event that the entire encryption industry is paying attention to. Within the Bitcoin ecosystem, almost everyone is paying attention to the Runes protocol, which will go online with the 840,000 block height. How will the Runes protocol change the landscape of the Bitcoin layer protocol ecosystem? What impact will it have on BRC-20, Atomics and other protocols? As an observer and player, on the eve of the halving and the launch of Runes, I would like to sort out some of my recent thoughts on the market. Core Viewpoint 1/Bitcoin’s one-layer token protocol will form BRC-20, Atomi

Write a code using C++ to find the number of subarrays with the same minimum and maximum values Write a code using C++ to find the number of subarrays with the same minimum and maximum values Aug 25, 2023 pm 11:33 PM

In this article, we will use C++ to solve the problem of finding the number of subarrays whose maximum and minimum values ​​are the same. The following is an example of the problem −Input:array={2,3,6,6,2,4,4,4}Output:12Explanation:{2},{3},{6},{6},{2 },{4},{4},{4},{6,6},{4,4},{4,4}and{4,4,4}arethesubarrayswhichcanbeformedwithmaximumandminimumelementsame.Input:array={3,3, 1,5,

How to find the greatest common divisor in C language How to find the greatest common divisor in C language Sep 27, 2023 am 09:41 AM

The greatest common divisor can be found by using the Euclidean algorithm in C language. The principle is: the greatest common divisor of two integers a and b is equal to the remainder of a divided by b and the greatest common divisor of c and b. This algorithm is very efficient and can solve quickly even when dealing with large numbers.

Using C language programming to solve the greatest common divisor Using C language programming to solve the greatest common divisor Feb 21, 2024 pm 07:30 PM

Title: Use C language programming to implement the greatest common divisor solution. The greatest common divisor (Greatest Common Divisor, GCD for short) refers to the largest positive integer that can divide two or more integers at the same time. Solving for the greatest common divisor can be very helpful for some algorithms and problem solving. In this article, the function of finding the greatest common divisor will be implemented through C language programming, and specific code examples will be provided. In C language, you can use the Euclidean Algorithm to solve the maximum

See all articles