Advertisement
erfanul007

UVa 11408

Jan 5th, 2020
280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 3.20 KB | None | 0 0
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3.  
  4. // #pragma GCC optimize("Ofast,no-stack-protector")
  5. // #pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native")
  6. // #pragma GCC optimize("unroll-loops")
  7.  
  8. typedef unsigned long long ull;
  9. typedef long long          ll;
  10. typedef long double        lld;
  11. typedef vector<int>        vi;
  12. typedef vector<ll>         vll;
  13. typedef vector<vi>         vvi;
  14. typedef pair<int,int >     pii;
  15. typedef pair<ll,ll >       pll;
  16. typedef vector< pii >      vpii;
  17. typedef vector< pll >      vpll;
  18. typedef set<int>           sti;
  19.  
  20. #define sc                 scanf
  21. #define pf                 printf
  22. #define sci(n)             scanf("%d",&n)
  23. #define scii(n,m)          scanf("%d %d",&n,&m)
  24. #define scl(n)             scanf("%lld",&n)
  25. #define scd(n)             scanf("%lf",&n)
  26. #define scs(s)             scanf("%s",s)
  27. #define pfi(n)             printf("%d",n)
  28. #define pfl(n)             printf("%lld",n)
  29. #define pff(n)             cout<<n
  30. #define spc                printf(" ")
  31. #define line               printf("\n")
  32. #define loop(i,x,y)        for(int i=int(x); i<=int(y); i++)
  33. #define rloop(i,y,x)       for(int i=int(y); i>=int(x); i--)
  34. #define cspf(i)            printf("Case %d: ", i)
  35. #define vout(v)            for(int w=0;w<v.size();w++){if(w) cout<<' '; cout<<v[w];}
  36. #define clr(a,x)           memset(a,x,sizeof(a))
  37. #define tp(v,j)            get<j>(v)
  38. #define pb                 push_back
  39. #define mp                 make_pair
  40. #define mt                 make_tuple
  41. #define ff                 first
  42. #define ss                 second
  43. #define all(v)             v.begin(),v.end()
  44. #define rall(v)            v.rbegin(),v.rend()
  45. #define read()             freopen("input.txt", "r", stdin)
  46. #define write()            freopen("output.txt", "w", stdout)
  47. #define fastIO()           ios_base::sync_with_stdio(false); cin.tie(NULL);
  48. /// Constants
  49. #define eps                1e-9
  50. #define PI                 acos(-1.0)  // 3.1415926535897932
  51. #define MAX                (ll)2147483647
  52. #define MAXn               5000015
  53.  
  54. int GCD(int a, int b) { return b == 0 ? a : GCD(b , a % b); }
  55. ll LCM(ll a, ll b) { return a * (b/GCD(a, b)); }
  56.  
  57. int pre[MAXn];
  58. int val[MAXn];
  59. int cnt[MAXn];
  60.  
  61. void seive()
  62. {
  63.     for(int i=4;i<MAXn;i+=2) pre[i]=2;
  64.     for(int i=3;i<=MAXn/i;i+=2){
  65.         if(pre[i]) continue;
  66.         for(int j=i*i;j<MAXn;j+=(2*i)){
  67.             if(!pre[j]) pre[j]=i;
  68.         }
  69.     }
  70.     for(int i=0;i<MAXn;i++){
  71.         if(!pre[i]) pre[i]=i;
  72.     }
  73.     for(int i=2;i<MAXn;i++){
  74.         int x = pre[i];
  75.         int y=i;
  76.         int z=0;
  77.         while(x>1 && y%x==0){
  78.             while(y%x==0) y/=x;
  79.             z+=x;
  80.             x = pre[y];
  81.         }
  82.         val[i]=z;
  83.     }
  84.     for(int i=2;i<MAXn-10;i++){
  85.         if(pre[val[i]]==val[i]) cnt[i]=cnt[i-1]+1;
  86.         else cnt[i]=cnt[i-1];
  87.     }
  88. }
  89.  
  90. int main()
  91. {
  92.     #ifdef VAMP
  93.         clock_t tStart = clock();
  94.         freopen("input.txt", "r", stdin);
  95.         freopen("output.txt", "w", stdout);
  96.     #endif
  97.  
  98.     seive();
  99.     while(1){
  100.         int a,b;
  101.         sci(a);
  102.         if(!a) break;
  103.         sci(b);
  104.         pfi(cnt[b]-cnt[a-1]);line;
  105.     }
  106.    
  107.  
  108.     #ifdef VAMP
  109.         fprintf(stderr, "\n>> Runtime: %.10fs\n", (double) (clock() - tStart) / CLOCKS_PER_SEC);
  110.     #endif
  111.  
  112.     return 0;
  113. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement