Advertisement
erfanul007

UVa 11347

Jun 30th, 2021
1,246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 5.24 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2. // #include <iostream>
  3. // #include <cstdio>
  4. // #include <cstdlib>
  5. // #include <algorithm>
  6. // #include <cmath>
  7. // #include <vector>
  8. // #include <set>
  9. // #include <map>
  10. // #include <queue>
  11. // #include <stack>
  12. // #include <ctime>
  13. // #include <cassert>
  14. // #include <complex>
  15. // #include <string>
  16. // #include <cstring>
  17. // #include <bitset>
  18. using namespace std;
  19.  
  20. // #pragma GCC optimize("Ofast,no-stack-protector")
  21. // #pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native")
  22. // #pragma GCC optimize("unroll-loops")
  23.  
  24. #define ll              long long int
  25. #define vi              vector< int >
  26. #define vll             vector< ll >
  27.  
  28. #define sc              scanf
  29. #define pf              printf
  30. #define cspf(i)         pf("Case %d:\n", i)
  31. #define spc             pf(" ")
  32. #define line            pf("\n")
  33.  
  34. #define ff              first
  35. #define ss              second
  36. #define mp              make_pair
  37. #define pb              push_back
  38. #define ppb             pop_back
  39. #define tp(v,j)         get<j>(v)
  40. #define Log(b,x)        (log(x)/log(b))
  41.  
  42. #define FOR(i,x,y)      for(int i = int(x); i < int(y); i++)
  43. #define ROF(i,x,y)      for(int i = int(x)-1; i >= int(y); i--)
  44. #define clr(arr,x)      memset(arr, x, sizeof arr)
  45. #define vout(v,sz)      for(int w=0;w<sz;w++){if(w) spc; cout<<v[w];}
  46. #define all(v)          v.begin(), v.end()
  47. #define rall(v)         v.rbegin(), v.rend()
  48. #define unq(v)          sort(all(v)),(v).resize(unique(all(v))-v.begin())
  49. #define fastIO          ios::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr)
  50.  
  51. #define sc1(x)          sc("%d",&x)
  52. #define sc2(x,y)        sc("%d %d", &x, &y)
  53. #define sc3(x,y,z)      sc("%d %d %d", &x, &y, &z)
  54. #define scl1(x)         sc("%lld",&x)
  55. #define scl2(x,y)       sc("%lld %lld", &x, &y)
  56. #define scf1(x)         sc("%lf",&x);
  57. #define scf2(x,y)       sc("%lf %lf", &x, &y)
  58.  
  59. #define pf1(x)          pf("%d",x)
  60. #define pf2(x,y)        pf("%d %d", x, y)
  61. #define pfl1(x)         pf("%lld\n",x)
  62. #define pfl2(x,y)       pf("%lld %lld", x, y)
  63.  
  64. #define MOD             (int)(1e9)
  65. #define MaxN            (ll)1e18
  66. #define inf             0x3f3f3f3f
  67. #define PI              acos(-1.0)  // 3.1415926535897932
  68. #define eps             1e-6
  69.  
  70. #ifdef ERFANUL007
  71.     #define debug(...) __f(#__VA_ARGS__, __VA_ARGS__)
  72.     template < typename Arg1 >
  73.     void __f(const char* name, Arg1&& arg1){
  74.         cout << name << " = " << arg1 << std::endl;
  75.     }
  76.     template < typename Arg1, typename... Args>
  77.     void __f(const char* names, Arg1&& arg1, Args&&... args){
  78.         const char* comma = strchr(names, ',');
  79.         cout.write(names, comma - names) << " = " << arg1 <<" | ";
  80.         __f(comma+1, args...);
  81.     }
  82. #else
  83.     #define debug(...)
  84. #endif
  85.  
  86. template <class T> inline T bigMod(T p,T e,T M){T ret=1; for(;e>0;e>>=1){ if(e&1) ret=(ret*p)%M; p=(p*p)%M;} return (T)ret;}
  87. template <class T> inline T modInverse(T a,T M){return bigMod(a,M-2,M);}
  88. template <class T> inline T gcd(T a,T b){if(b==0)return a;return gcd(b,a%b);}
  89. template <class T> inline T lcm(T a,T b) {a=abs(a);b=abs(b); return (a/gcd(a,b))*b;}
  90.  
  91. int dx[] = { 1,-1, 0, 0};                //graph moves
  92. int dy[] = { 0, 0, 1,-1};               //graph moves
  93.  
  94. int pfact[1001][170];
  95. vector< int > prime;
  96.  
  97. void factorization(int m){
  98.     int n = m;
  99.     for(int i=1; prime[i] * prime[i] <= n; i++){
  100.         while(n % prime[i] == 0){
  101.             n /= prime[i];
  102.             pfact[m][i]++;
  103.         }
  104.     }
  105.     if(n > 1){
  106.         for(int i=1; i<prime.size(); i++){
  107.             if(n == prime[i]){
  108.                 pfact[m][i]++;
  109.                 break;
  110.             }
  111.         }
  112.     }
  113. }
  114.  
  115. bool isprime[1001];
  116.  
  117. void sieve(){
  118.     clr(isprime, 1);
  119.     for(int i=4; i<=1000; i+=2) isprime[i] = 0;
  120.     for(int i=3; i*i<=1000; i+=2){
  121.         if(!isprime[i]) continue;
  122.         for(int j= i*i; j<=1000; j+=(i*2)) isprime[j] = 0;
  123.     }
  124.     prime.pb(0);
  125.     prime.pb(2);
  126.     for(int i=3; i<=1000; i+=2){
  127.         if(isprime[i]) prime.pb(i);
  128.     }
  129.     // debug(prime.size());
  130.     // for(auto it : prime) cout << it << '\n';
  131.     for(int i=2; i<=1000; i++) factorization(i);
  132. }
  133.  
  134. ll dp[1001][21][170];
  135.  
  136. void dpsolve(int n, int k){
  137.     if(n < 2) return;
  138.     if(dp[n][k][0]) return;
  139.  
  140.     dp[n][k][0] = 1;
  141.     for(int i=1; i<170; i++){
  142.         dp[n][k][i] = pfact[n][i];
  143.     }
  144.     dpsolve(n-k, k);
  145.     if(n - k < 2) return;
  146.  
  147.     for(int i=1; i<170; i++){
  148.         dp[n][k][i] += dp[n-k][k][i];
  149.     }
  150. }
  151.  
  152.  
  153. int main()
  154. {
  155.     #ifdef ERFANUL007
  156.         clock_t tStart = clock();
  157.         freopen("input.txt", "r", stdin);
  158.         freopen("output.txt", "w", stdout);
  159.     #endif
  160.  
  161.     sieve();
  162.  
  163.     int t, ca=0; cin >> t;
  164.  
  165.     while(t--){
  166.         string s; cin >> s;
  167.         int n = 0, k = 0, i = 0;
  168.         for(; i<s.size(); i++){
  169.             if(s[i]=='!') break;
  170.             n = n * 10 + (s[i] - '0');
  171.         }
  172.         for(; i<s.size(); i++) k++;
  173.         dpsolve(n, k);
  174.         ll ans = 1;
  175.         for(int i=1; i<170; i++){
  176.             if((dp[n][k][i]+1) <= MaxN/ans) ans *= (dp[n][k][i]+1);
  177.             else{
  178.                 ans = -1;
  179.                 break;
  180.             }
  181.         }
  182.         cout << "Case " << ++ca << ": ";
  183.         if(ans == -1) cout << "Infinity\n";
  184.         else cout << ans << '\n';
  185.     }
  186.  
  187.  
  188.     #ifdef ERFANUL007
  189.         fprintf(stderr, "\n>> Runtime: %.10fs\n", (double) (clock() - tStart) / CLOCKS_PER_SEC);
  190.     #endif
  191.  
  192.     return 0;
  193. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement