• codeforces Soldier and Number Game(dp+素数筛选)


                                  D. Soldier and Number Game
                              time limit per test3 seconds
                              memory limit per test256 megabytes
                              inputstandard input
                              outputstandard output
    Two soldiers are playing a game. At the beginning first of them chooses a positive integer n and gives it to the second soldier. Then the second one tries to make maximum possible number of rounds. Each round consists of choosing a positive integer x > 1, such that n is divisible by x and replacing n with n / x. When n becomes equal to 1 and there is no more possible valid moves the game is over and the score of the second soldier is equal to the number of rounds he performed.
    
    To make the game more interesting, first soldier chooses n of form a! / b! for some positive integer a and b (a ≥ b). Here by k! we denote the factorial of k that is defined as a product of all positive integers not large than k.
    
    What is the maximum possible score of the second soldier?
    
    Input
    First line of input consists of single integer t (1 ≤ t ≤ 1 000 000) denoting number of games soldiers play.
    
    Then follow t lines, each contains pair of integers a and b (1 ≤ b ≤ a ≤ 5 000 000) defining the value of n for a game.
    
    Output
    For each game output a maximum score that the second soldier can get.
    
    Sample test(s)
    input
    2
    3 1
    6 3
    output
    2
    5
    

      

    /*
        dp求解 n!的质因子个数。 
        1.首先利用素数筛选法求出素数的集合
        2.dp[i] = dp[i/prime[j]]+1, i%prime[j]==0; prime[j]是第一个能整除i的数 
    */
    #include<iostream> 
    #include<cstring>
    #include<cstdio>
    #include<algorithm>
    #define N 5000005
    using namespace std;
    
    int prime[N];
    bool isprime[N];
    int dp[N];
    void init(){
        int top = 0;
        for(int i=2; i<N; ++i){
            if(!isprime[i])
                prime[top++] = i;
            for(int j=0; j<top && i*prime[j]<N; ++j){//素数筛选 
                isprime[i*prime[j]] = true;
                if(i%prime[j] == 0)
                    break;
            }
        }
        for(int i=2; i<N; ++i){
            if(!isprime[i])
                dp[i] = 1;
            else{
                for(int j=0; j<top; ++j)
                    if(i%prime[j]==0){
                        dp[i] = dp[i/prime[j]] + 1;
                        break;
                    }
            }
        }
        for(int i=2; i<N; ++i)//前n个数的质因数个数的和 
            dp[i]+=dp[i-1];
    }
     
    int main(){
        int t;
        scanf("%d", &t);
        init();
        while(t--){
            int a, b;
            scanf("%d%d", &a, &b);
            printf("%d
    ", dp[a] - dp[b]);
        }
        return 0; 
    } 
  • 相关阅读:
    Windows下PHP开启mcrypt扩展和SSL(OpenSSL)扩展支持
    MyBatis 学习笔记
    试用百度云计算平台
    TCP三次握手及四次挥手详细图解
    Java开发中的23种设计模式详解
    Extjs4.1.0_从入门到精通
    SQLite3命令操作大全
    带你了解 HBase 数据模型和 HBase 架构
    让数据库无惧灾难,华为云GaussDB同城双集群高可用方案正式发布!
    论文阅读丨神经清洁: 神经网络中的后门攻击识别与缓解
  • 原文地址:https://www.cnblogs.com/hujunzheng/p/4529072.html
Copyright © 2020-2023  润新知