Codeforces Round #226 (Div. 2) C. Bear and Prime Numbers(素数筛法)

Recently, the bear started studying data structures and faced the following problem.

You are given a sequence of integers x1, x2, ..., xn of length n and m queries, each of them is characterized by two integers li, ri. Let's introduce f(p) to represent the number of such indexes k, that xk is divisible by p. The answer to the query li, ri is the sum: , where S(li, ri) is a set of prime numbers from segment [li, ri] (both borders are included in the segment).

Help the bear cope with the problem.

Input

The first line contains integer n (1 ≤ n ≤ 106). The second line contains n integers x1, x2, ..., xn (2 ≤ xi ≤ 107). The numbers are not necessarily distinct.

The third line contains integer m (1 ≤ m ≤ 50000). Each of the following m lines contains a pair of space-separated integers, li and ri (2 ≤ li ≤ ri ≤ 2·109) — the numbers that characterize the current query.

Output

Print m integers — the answers to the queries on the order the queries appear in the input.

Sample test(s)
Input
6
5 5 7 10 14 15
3
2 11
3 12
4 4
Output
9
7
0
Input
7
2 3 5 7 11 4 8
2
8 10
2 123
Output
0
7
Note

Consider the first sample. Overall, the first sample has 3 queries.

  1. The first query l = 2, r = 11 comes. You need to count f(2) + f(3) + f(5) + f(7) + f(11) = 2 + 1 + 4 + 2 + 0 = 9.
  2. The second query comes l = 3, r = 12. You need to count f(3) + f(5) + f(7) + f(11) = 1 + 4 + 2 + 0 = 7.
  3. The third query comes l = 4, r = 4. As this interval has no prime numbers, then the sum equals 0.

                                                      

题意:

给你n个数,求出能够整除区间【l,r】之间的质数的总个数,一共有m个区间求和,每个区间输出答案。

思路:

使用数组标记输入的数。

数的大小是1e7,在2~1e7+5这个区间内进行素数筛法,顺便统计前n个质数的整除数的个数和。

~~~~~~~~~`

一开始的思路是对每一个数的质因子记录起来,记录n个数的每一出现质因子的总个数。但是在这个地方会超时,因为对于每一个数最大要32次才能求出全部的质因子(2的32方 >= 1e7),再 遍历n个数的话t = 32*1e7,超过了2e8(时限2s)。

CODE:

#include <iostream>
#include <cstdio>
#include <cstring>

using namespace std;
const int maxn = 1e7+10;
int sum[maxn],ex[maxn];
bool ispri[maxn];

void sum_pri()
{
    memset(ispri, 0, sizeof(ispri));
    for(int i = 2; i < maxn; ++i) {
        if(!ispri[i]) {
            for(int j = i; j < maxn; j+=i) {
                ispri[j] = 1;
                sum[i] += ex[j];
            }
        }
        sum[i] += sum[i-1];
    }
}
int main()
{
//freopen("in", "r", stdin);
    int n;
    while(~scanf("%d", &n)) {
        memset(ex, 0, sizeof(ex));
        memset(sum, 0, sizeof(sum));

        int num;
        for(int i = 0; i < n; ++i) {
            scanf("%d", &num);
            ex[num] ++;
        }

        sum_pri();

        int m;
        scanf("%d", &m);
        while(m--) {
            int lef, rig;
            scanf("%d %d", &lef, &rig);
            if(rig > 1e7) rig = 1e7;
            if(lef >= 1e7) printf("0\n");
            else printf("%d\n", sum[rig] - sum[lef-1]);
        }
    }
    return 0;
}




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值