首页 > 其他 > 详细

Count Primes Total Accepted: 831 Total Submissions: 6167

时间:2015-04-27 23:47:08      阅读:293      评论:0      收藏:0      [点我收藏+]

题目来自:Leetcode


https://leetcode.com/problems/count-primes/

Count Primes

 Total Accepted: 831 Total Submissions: 6167My Submissions

Description:

Count the number of prime numbers less than a non-negative number, n

Hint: The number n could be in the order of 100,000 to 5,000,000.

click to show more hints.

Credits:
Special thanks to @mithmatt for adding this problem and creating all test cases.

Show Tags
Have you met this question in a real interview? 
Yes
 
No

Discuss

class Solution {
public:
    int countPrimes(int n) {
           if(n<=2)
         return 0;
         if(n==3)
         return 1;
       bitset<5000001> b;
       b.set();
       b.reset(0);
       b.reset(1);
       int imax=sqrt(n)+1;
       int j;
       for(int i=2;i<=imax;++i)
       {
           if(b.test(i)==true)
           {
               j=i*i;
              while(j<n)
              {
                  b.reset(j);
                //  cout<<"j="<<j<<endl;
                  j+=i;
              }
               
           }
       }
       b.flip();
         return n-b.count();
    }
};


Count Primes Total Accepted: 831 Total Submissions: 6167

原文:http://blog.csdn.net/zhouyelihua/article/details/45317789

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!