Araf_12

Half memory seive

Mar 16th, 2021 (edited)
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.43 KB | Source Code | 0 0
  1. const int MX = 5e4+123;
  2. bool seive[MX];
  3. vi prime;
  4.  
  5. void seiveGen(int limit) {
  6.     limit += 100;
  7.     int sqrtn = sqrt(limit);
  8.     for(int i = 3; i <= sqrtn; i += 2) {
  9.         if(!seive[i>>1]) {
  10.             for(int j = i * i; j < limit; j += i + i) {
  11.                 seive[j>>1] = 1;
  12.             }
  13.         }
  14.     }
  15.    
  16.     prime.PB(2);
  17.     for(int i = 3; i < limit; i += 2) {
  18.         if(!seive[i>>1]) prime.PB(i);
  19.     }
  20. }
Add Comment
Please, Sign In to add comment