Tuesday, June 18, 2019

[Codechef] SEGPROD - Product on the segment by modulo

Author            : Dipu Kumar Mohanto 
                    CSE, Batch - 6
                    BRUR.
Problem Statement : SEGPROD - Product on the segment by modulo
Source            : Codechef
Category          : Data Structure
Algorithm         : Disjoint Sparse Table 
Verdict           : Accepted

  1. #include <bits/stdc++.h>  
  2.   
  3. using namespace std;  
  4.   
  5. #define ll                long long  
  6.   
  7. static const int maxn = 3e6 + 50;  
  8. static const int Max = 2e7 + 5;  
  9. static const int logn = 20;  
  10.   
  11. ll arr[maxn], dst[maxn][logn];  
  12. ll p;  
  13. ll queries[Max];  
  14.   
  15. ll mul(ll a, ll b)  
  16. {  
  17.       return (a * b) % p;  
  18. }  
  19.   
  20. void buildDST(int h, int l, int r)  
  21. {  
  22.       if (h < 0) return;  
  23.       int mid = (l + r) >> 1;  
  24.       ll product = 1;  
  25.       for (int i = mid - 1; i >= l; i--)  // Suffix calculation  
  26.       {  
  27.             dst[i][h] = mul(product, arr[i]);  
  28.             product = mul(product, arr[i]);  
  29.       }  
  30.       product = 1;  
  31.       for (int i = mid; i < r; i++) // Prefix calculation  
  32.       {  
  33.             dst[i][h] = mul(product, arr[i]);  
  34.             product = mul(product, arr[i]);  
  35.       }  
  36.       buildDST(h-1, l, mid);  
  37.       buildDST(h-1, mid, r);  
  38. }  
  39.   
  40. ll query(int l, int r)  
  41. {  
  42.       if (l == r) return arr[l]; // Base Case  
  43.       int h = 31 - __builtin_clz(l ^ r);  
  44.       return mul(dst[l][h], dst[r][h]);  
  45. }  
  46.   
  47. void solve()  
  48. {  
  49.       int n, q;  
  50.       cin >> n >> p >> q;  
  51.       for (int i = 0; i < n; i++)  
  52.       {  
  53.             cin >> arr[i];  
  54.             arr[i] %= p;  
  55.       }  
  56.       int h = 1;  
  57.       while ((1 << h) < n) ++h;  
  58.       buildDST(h-1, 0, (1 << h));  
  59.       int totalQuery = q / 64 + 2;  
  60.       for (int i = 0; i < totalQuery; i++) cin >> queries[i];  
  61.       ll l = 0, r = 0;  
  62.       ll last = 0;  
  63.       for (int i = 0; i < q; i++)  
  64.       {  
  65.             if (i % 64 == 0)  
  66.             {  
  67.                   l = (queries[i / 64] + last) % n;  
  68.                   r = (queries[i / 64 + 1] + last) % n;  
  69.             }  
  70.             else  
  71.             {  
  72.                   l = (l + last) % n;  
  73.                   r = (r + last) % n;  
  74.             }  
  75.             if (l > r) swap(l, r);  
  76.             ll ans = query(l, r);  
  77.             last = (ans + 1) % p;  
  78.       }  
  79.       cout << last << '\n';  
  80. }  
  81.   
  82. int main()  
  83. {  
  84.       ios_base::sync_with_stdio(false);  
  85.       cin.tie(nullptr);  
  86.       cout.tie(nullptr);  
  87.   
  88.       #ifndef ONLINE_JUDGE  
  89.             freopen("in.txt""r", stdin);  
  90.       #endif // ONLINE_JUDGE  
  91.   
  92.       int tc;  
  93.       cin >> tc;  
  94.       for (int tcase = 1; tcase <= tc; tcase++) solve();  
  95. }  

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.