CodeForces 546D

Posted 温和的提比略

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CodeForces 546D相关的知识,希望对你有一定的参考价值。

题意略。

思路:开始傻傻地还单个去分解[1,5000000]中每一个数字的因子,那必然超时的啊。

正确的做法是用类似于埃式筛法那样预处理一遍。复杂度:O((n / 2 + n / 3 + .....+ )) = O(nlogn)。

详见代码:

#include<bits/stdc++.h>
#define maxn 5000005
using namespace std;
typedef long long LL;

LL sum[maxn];

void init(){
    memset(sum,0,sizeof(sum));
    for(int i = 2;i < maxn;++i){
        if(sum[i] == 0){
            for(int k = i;k < maxn;k += i){
                int temp = k;
                while(temp % i == 0){
                    temp /= i;
                    ++sum[k];
                }
            }
        }
    }
    for(int i = 1;i < maxn;++i){
        sum[i] += sum[i - 1];
    }
}

int main(){
    int t;
    init();
    scanf("%d",&t);
    while(t--){
        int a,b;
        scanf("%d%d",&a,&b);
        LL ans = sum[a] - sum[b];
        printf("%lld\n",ans);
    }
    return 0;
}

 

以上是关于CodeForces 546D的主要内容,如果未能解决你的问题,请参考以下文章

质因子打表

[Codeforces Round #522 (Div. 2, based on Technocup 2019 Elimination Round 3)][C. Playing Piano](代码片段

c_cpp Codeforces片段

VS解决BEX错误但无法关闭DEP保护的问题

Codeforces 86C Genetic engineering(AC自动机+DP)

CodeForces 1005D Polycarp and Div 3(思维贪心dp)