zoukankan      html  css  js  c++  java
  • 素数筛法

    素数筛法 :

      建立一个标记数组 , 并将其初始化为 1 , 然后从元素 2 开始 , 每次让其 加上它本身 ,并且将其标记数组中的值记为 0 ,最后将标记数组中不为 0 的元素全部输出 。

    int pt[1000] ;
    
    int main ( ) {
        for ( int i = 1 ; i <= 1000 ; i++ ) {
            pt[i] = 1 ;
        }
        pt[1] = 0 ;
    
        for ( int i = 2 ; i <= 1000 ; i++ ) {
            if ( pt[i] ) {
                for ( int j = 2*i ; j <= 1000 ; j += i ) {
                    pt[j] = 0 ;
                }
            }
        }
        for ( int i = 1 ; i <= 1000 ; i++ ) {
            if ( pt[i] ) cout << i << '	' ;
        }
        return 0 ;
    }
    

    由此引申一道类似题目 :

      

    Bash has set out on a journey to become the greatest Pokemon master. To get his first Pokemon, he went to Professor Zulu's Lab. Since Bash is Professor Zulu's favourite student, Zulu allows him to take as many Pokemon from his lab as he pleases.

    But Zulu warns him that a group of k > 1 Pokemon with strengths {s1, s2, s3, ..., sk} tend to fight among each other if gcd(s1, s2, s3, ..., sk) = 1 (see notes for gcd definition).

    Bash, being smart, does not want his Pokemon to fight among each other. However, he also wants to maximize the number of Pokemon he takes from the lab. Can you help Bash find out the maximum number of Pokemon he can take?

    Note: A Pokemon cannot fight with itself.

    Input

    The input consists of two lines.

    The first line contains an integer n (1 ≤ n ≤ 105), the number of Pokemon in the lab.

    The next line contains n space separated integers, where the i-th of them denotes si (1 ≤ si ≤ 105), the strength of the i-th Pokemon.

    Output

    Print single integer — the maximum number of Pokemons Bash can take.

    Example
    Input
    3
    2 3 4
    Output
    2
    Input
    5
    2 3 4 6 7
    Output
    3
    Note

    gcd (greatest common divisor) of positive integers set {a1, a2, ..., an} is the maximum positive integer that divides all the integers {a1, a2, ..., an}.

    In the first sample, we can take Pokemons with strengths {2, 4} since gcd(2, 4) = 2.

    In the second sample, we can take Pokemons with strengths {2, 4, 6}, and there is no larger group with gcd ≠ 1.

    题目大意 :

      输出一组最大公约数不为 1 , 并且长度最长的数组长度 。

      

    AC代码 :

    #include <iostream>
    #include <cstdio>
    #include <algorithm>
    #include <cstring>
    #include <cmath>
    using namespace std ;
    
    #define Max(a,b) a>b?a:b
    #define Min(a,b) a>b?b:a
    #define ll long long
    
    int pre[100005] ;
    
    int main ( ) {
        int n , x ;
    
        while ( ~scanf ( "%d" , &n ) ) {
            memset ( pre , 0 , sizeof(pre) ) ;
            int t = 0 ;
            for ( int i = 0 ; i < n ; i++ ) {
                scanf ( "%d" , &x ) ;
                pre[x]++ ;
                t = Max ( t , x ) ;
            }
    
            int ans = 1 ;
            for ( int i = 2 ; i <= t ; i++ ) {
                int sum = 0 ;
                for ( int j = i ; j <= t ; j += i ) {
                    sum += pre[j] ;
                }
                ans = Max ( sum , ans ) ;
            }
    
            printf ( "%d
    " , ans ) ;
    
        }
    
        return 0 ;
    }
    
    东北日出西边雨 道是无情却有情
  • 相关阅读:
    (转)Android学习-使用Async-Http实现图片压缩并上传功能
    (转)Eclipse中需要查看某个类的源码,直接按住Ctrl 然后点击想要查看的类或则方法
    android如何判断控件的显示或者隐藏
    Android开发之利用ViewPager实现页面的切换(仿微信、QQ)
    Android开发之利用ViewPager实现在Activity或Fragment中引入别的布局文件实现滑动并进行页面跳转
    Android开发之自定义的ProgressDialog
    Android开发之SharedPreferences的封装
    Pytorch有什么节省显存的小技巧?
    pytorch模型提示超出内存cuda runtime error(2): out of memory
    Structured3D: A Large Photo-realistic Dataset for Structured 3D Modeling
  • 原文地址:https://www.cnblogs.com/ccut-ry/p/7441287.html
Copyright © 2011-2022 走看看