Advertisement
erfanul007

UVa 10791

Jan 2nd, 2020
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 3.05 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-6
  50. #define PI                 acos(-1.0)  // 3.1415926535897932
  51. #define MAX                (ll)2147483647
  52. #define MAXn               1000009
  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. ll n;
  58.  
  59. ll minLCM()
  60. {
  61.     if(n==1) return 2;
  62.     ll k=n,ans=0,f=0,temp;
  63.     if(k%2==0){
  64.         temp=1;
  65.         while(k%2==0){
  66.             k/=2;
  67.             temp*=2;
  68.         }
  69.         f++;
  70.         ans = temp;
  71.     }
  72.  
  73.     for(ll i=3;i*i<=k;i+=2){
  74.         if(k%i==0){
  75.             temp=1;
  76.             while(k%i==0){
  77.                 temp*=i;
  78.                 k/=i;
  79.             }
  80.             f++;
  81.             ans+=temp;
  82.         }
  83.     }
  84.     if(k>1){
  85.        ans+=k;
  86.        f++;
  87.     }
  88.     if(f==1) ans=n+1;
  89.     return ans;
  90. }
  91.  
  92. int main()
  93. {
  94.     #ifdef VAMP
  95.         clock_t tStart = clock();
  96.         freopen("input.txt", "r", stdin);
  97.         freopen("output.txt", "w", stdout);
  98.     #endif
  99.  
  100.     int ca=0;
  101.     while(1){
  102.         scl(n);
  103.         if(!n) break;
  104.         cspf(++ca);
  105.         pfl(minLCM());
  106.         line;
  107.     }
  108.    
  109.  
  110.     #ifdef VAMP
  111.         fprintf(stderr, "\n>> Runtime: %.10fs\n", (double) (clock() - tStart) / CLOCKS_PER_SEC);
  112.     #endif
  113.  
  114.     return 0;
  115. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement