📜  数组中所有复合数字的乘积

📅  最后修改于: 2021-04-24 20:10:51             🧑  作者: Mango

给定一个整数数组。任务是计算数组中所有复合数字的乘积。
注意: 1既不是素数也不是复合数。

例子:

Input: arr[] = {2, 3, 4, 5, 6, 7}
Output: 24
Composite numbers are 4 and 6. 
So, product = 24

Input: arr[] = {11, 13, 17, 20, 19}
Output: 20

天真的方法:一个简单的解决方案是遍历数组并对每个元素进行素性测试。如果该元素既不是质数也不是1,则将其乘以正在运行的乘积。
时间复杂度– O(Nsqrt(N))

高效的方法:使用Eratosthenes筛子生成一个布尔向量,该布尔向量达到数组中最大元素的大小,该布尔向量可用于检查数字是否为质数。还要加上0和1作为质数,这样它们就不会被计为复合数。现在遍历数组,并找到使用生成的布尔矢量合成的那些元素的乘积。

C++
// C++ program to find the product
// of all the composite numbers
// in an array
#include 
using namespace std;
  
// Function that returns the
// the product of all composite numbers
int compositeProduct(int arr[], int n)
{
    // Find maximum value in the array
    int max_val = *max_element(arr, arr + n);
  
    // Use sieve to find all prime numbers
    // less than or equal to max_val
    // Create a boolean array "prime[0..n]". A
    // value in prime[i] will finally be false
    // if i is Not a prime, else true.
    vector prime(max_val + 1, true);
  
    // Set 0 and 1 as primes as
    // they don't need to be
    // counted as composite numbers
    prime[0] = true;
    prime[1] = true;
    for (int p = 2; p * p <= max_val; p++) {
  
        // If prime[p] is not changed, then
        // it is a prime
        if (prime[p] == true) {
  
            // Update all multiples of p
            for (int i = p * 2; i <= max_val; i += p)
                prime[i] = false;
        }
    }
  
    // Find the product of all
    // composite numbers in the arr[]
    int product = 1;
    for (int i = 0; i < n; i++)
        if (!prime[arr[i]]) {
            product *= arr[i];
        }
  
    return product;
}
  
// Driver code
int main()
{
  
    int arr[] = { 2, 3, 4, 5, 6, 7 };
    int n = sizeof(arr) / sizeof(arr[0]);
  
    cout << compositeProduct(arr, n);
  
    return 0;
}


Java
// Java program to find the product
// of all the composite numbers
// in an array
import java.util.*;
  
class GFG {
  
    // Function that returns the
    // the product of all composite numbers
    static int compositeProduct(int arr[], int n)
    {
        // Find maximum value in the array
        int max_val = Arrays.stream(arr).max().getAsInt();
  
        // Use sieve to find all prime numbers
        // less than or equal to max_val
        // Create a boolean array "prime[0..n]". A
        // value in prime[i] will finally be false
        // if i is Not a prime, else true.
        boolean[] prime = new boolean[max_val + 1];
        Arrays.fill(prime, true);
  
        // Set 0 and 1 as primes as
        // they don't need to be
        // counted as composite numbers
        prime[0] = true;
        prime[1] = true;
        for (int p = 2; p * p <= max_val; p++) {
  
            // If prime[p] is not changed, then
            // it is a prime
            if (prime[p] == true) {
  
                // Update all multiples of p
                for (int i = p * 2; i <= max_val; i += p) {
                    prime[i] = false;
                }
            }
        }
  
        // Find the product of all
        // composite numbers in the arr[]
        int product = 1;
        for (int i = 0; i < n; i++) {
            if (!prime[arr[i]]) {
                product *= arr[i];
            }
        }
  
        return product;
    }
  
    // Driver code
    public static void main(String[] args)
    {
        int arr[] = { 2, 3, 4, 5, 6, 7 };
        int n = arr.length;
  
        System.out.println(compositeProduct(arr, n));
    }
}
  
// This code has been contributed by 29AjayKumar


Python3
'''
Python3 program to find product of
all the composite numberes in given array'''
import math as mt
'''
function to find the product of all composite
niumbers in the given array
'''
def compositeProduct(arr, n):
      
       
    # find the maximum value in the array
    max_val = max(arr)
    '''
    USE SIEVE TO FIND ALL PRIME NUMBERS LESS
    THAN OR EQUAL TO max_val
    Create a boolean array "prime[0..n]". A
    value in prime[i] will finally be false
    if i is Not a prime, else true.
    '''
    prime =[True for i in range(max_val + 1)]
      
    '''
    Set 0 and 1 as primes as
    they don't need to be
    counted as composite numbers
    '''
    prime[0]= True
    prime[1]= True
      
    for p in range(2, mt.ceil(mt.sqrt(max_val))):
        # Remaining part of SIEVE
        '''
        if prime[p] is not changed, than it is prime
        '''
        if prime[p]:
            # update all multiples of p
            for i in range(p * 2, max_val + 1, p):
                prime[i]= False
      
    # find the product of all composite numbers in the arr[]
    product = 1
      
    for i in range(n):
        if prime[arr[i]]== False:
            product*= arr[i]
      
    return product
  
# Driver code
  
arr =[2, 3, 4, 5, 6, 7]
  
n = len(arr)
  
print(compositeProduct(arr, n))
  
# contributed by Mohit kumar 29


C#
// C# program to find the product
// of all the composite numbers
// in an array
using System;
using System.Linq;
public class GFG {
  
    // Function that returns the
    // the product of all composite numbers
    static int compositeProduct(int[] arr, int n)
    {
        // Find maximum value in the array
        int max_val = arr.Max();
  
        // Use sieve to find all prime numbers
        // less than or equal to max_val
        // Create a boolean array "prime[0..n]". A
        // value in prime[i] will finally be false
        // if i is Not a prime, else true.
        bool[] prime = new bool[max_val + 1];
        for (int i = 0; i < max_val + 1; i++)
            prime[i] = true;
  
        // Set 0 and 1 as primes as
        // they don't need to be
        // counted as composite numbers
        prime[0] = true;
        prime[1] = true;
        for (int p = 2; p * p <= max_val; p++) {
  
            // If prime[p] is not changed, then
            // it is a prime
            if (prime[p] == true) {
  
                // Update all multiples of p
                for (int i = p * 2; i <= max_val; i += p) {
                    prime[i] = false;
                }
            }
        }
  
        // Find the product of all
        // composite numbers in the arr[]
        int product = 1;
        for (int i = 0; i < n; i++) {
            if (!prime[arr[i]]) {
                product *= arr[i];
            }
        }
  
        return product;
    }
  
    // Driver code
    public static void Main()
    {
        int[] arr = { 2, 3, 4, 5, 6, 7 };
        int n = arr.Length;
  
        Console.WriteLine(compositeProduct(arr, n));
    }
}
/* This code contributed by PrinciRaj1992 */


PHP


输出:
24