数组中范围的乘积
给定一个大小为 N 的数组 A[]。解决 Q 个查询。在模 P 下找到范围 [L, R] 中的产品(P 是素数)。
例子:
Input : A[] = {1, 2, 3, 4, 5, 6}
L = 2, R = 5, P = 229
Output : 120
Input : A[] = {1, 2, 3, 4, 5, 6},
L = 2, R = 5, P = 113
Output : 7
蛮力
对于每个查询,遍历 [L, R] 范围内的每个元素并计算模 P 下的乘积。这将在 O(N) 中回答每个查询。
C++
// Product in range
// Queries in O(N)
#include
using namespace std;
// Function to calculate
// Product in the given range.
int calculateProduct(int A[], int L,
int R, int P)
{
// As our array is 0 based
// as and L and R are given
// as 1 based index.
L = L - 1;
R = R - 1;
int ans = 1;
for (int i = L; i <= R; i++)
{
ans = ans * A[i];
ans = ans % P;
}
return ans;
}
// Driver code
int main()
{
int A[] = { 1, 2, 3, 4, 5, 6 };
int P = 229;
int L = 2, R = 5;
cout << calculateProduct(A, L, R, P)
<< endl;
L = 1, R = 3;
cout << calculateProduct(A, L, R, P)
<< endl;
return 0;
}
Java
// Product in range Queries in O(N)
import java.io.*;
class GFG
{
// Function to calculate
// Product in the given range.
static int calculateProduct(int []A, int L,
int R, int P)
{
// As our array is 0 based as
// and L and R are given as 1
// based index.
L = L - 1;
R = R - 1;
int ans = 1;
for (int i = L; i <= R; i++)
{
ans = ans * A[i];
ans = ans % P;
}
return ans;
}
// Driver code
static public void main (String[] args)
{
int []A = { 1, 2, 3, 4, 5, 6 };
int P = 229;
int L = 2, R = 5;
System.out.println(
calculateProduct(A, L, R, P));
L = 1;
R = 3;
System.out.println(
calculateProduct(A, L, R, P));
}
}
// This code is contributed by vt_m.
Python3
# Python3 program to find
# Product in range Queries in O(N)
# Function to calculate Product
# in the given range.
def calculateProduct (A, L, R, P):
# As our array is 0 based
# and L and R are given as
# 1 based index.
L = L - 1
R = R - 1
ans = 1
for i in range(R + 1):
ans = ans * A[i]
ans = ans % P
return ans
# Driver code
A = [ 1, 2, 3, 4, 5, 6 ]
P = 229
L = 2
R = 5
print (calculateProduct(A, L, R, P))
L = 1
R = 3
print (calculateProduct(A, L, R, P))
# This code is contributed
# by "Abhishek Sharma 44"
C#
// Product in range Queries in O(N)
using System;
class GFG
{
// Function to calculate
// Product in the given range.
static int calculateProduct(int []A, int L,
int R, int P)
{
// As our array is 0 based
// as and L and R are given
// as 1 based index.
L = L - 1;
R = R - 1;
int ans = 1;
for (int i = L; i <= R; i++)
{
ans = ans * A[i];
ans = ans % P;
}
return ans;
}
// Driver code
static public void Main ()
{
int []A = { 1, 2, 3, 4, 5, 6 };
int P = 229;
int L = 2, R = 5;
Console.WriteLine(
calculateProduct(A, L, R, P));
L = 1;
R = 3;
Console.WriteLine(
calculateProduct(A, L, R, P));
}
}
// This code is contributed by vt_m.
PHP
Javascript
C++
Java
Python3
C#
Javascript
输出 :
120
6
高效使用模乘逆:
由于 P 是素数,我们可以使用模乘逆。使用动态规划,我们可以计算模 P 下的前积数组,使得索引 i 处的值包含 [0, i] 范围内的乘积。类似地,我们可以计算模 P 下的预逆积。现在每个查询都可以在 O(1) 中得到回答。
逆积数组包含索引 i 处 [0, i] 范围内的逆积。因此,对于查询 [L, R],答案将是 Product[R]*InverseProduct[L-1]
注意:我们不能将答案计算为 Product[R]/Product[L-1],因为乘积是在模 P 下计算的。如果我们不计算模 P 下的乘积,总是有溢出的可能性。
C++
Java
Python3
C#
Javascript
输出 :
7
6