Advertisement
yeskendir_sultanov

Sparse Table

Apr 2nd, 2025
436
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.32 KB | Source Code | 0 0
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. const int N = 1e5 + 3;
  5. const int LOG = 18;
  6. int n, q, a[N], mxp[N], p[LOG], dp[LOG][N];
  7.  
  8. void preCalc() {
  9.     p[0] = 1;
  10.     for (int i = 1; i < LOG; ++i) {
  11.         p[i] = p[i - 1] * 2;
  12.     }
  13.     for (int i = 1, curP = 0, curValue = 1; i < N; ++i) {
  14.         while (curValue * 2 <= i) {
  15.             curValue *= 2;
  16.             curP++;
  17.         }
  18.         mxp[i] = curP;
  19.     }
  20. }
  21.  
  22. void build() {
  23.     for (int i = 1; i <= n; ++i) {
  24.         dp[0][i] = a[i];
  25.     }
  26.     int Log = mxp[n];
  27.     for (int k = 1; k <= Log; ++k) {
  28.         for (int i = 1; i <= n; ++i) {
  29.             dp[k][i] = min(dp[k - 1][i], dp[k - 1][i + p[k - 1]]);
  30.         }
  31.     }
  32. }
  33.  
  34. int getMin(int L, int R) {
  35.     int k = mxp[R - L + 1];
  36.     return min(dp[k][L], dp[k][R - p[k] + 1]);
  37. }
  38.  
  39. void solve(int testId) {
  40.     cin >> n >> q;
  41.     for (int i = 1; i <= n; ++i) {
  42.         cin >> a[i];
  43.     }
  44.     build();
  45.    
  46.     cout << "Case " << testId << ":" << endl;
  47.     while (q--) {
  48.         int i, j;
  49.         cin >> i >> j;
  50.         cout << getMin(i, j) << endl;
  51.     }
  52. }
  53.  
  54. int main() {
  55.     ios_base::sync_with_stdio(NULL);
  56.     cin.tie(0); cout.tie(0);
  57.    
  58.     preCalc();
  59.    
  60.     int t;
  61.     cin >> t;
  62.     for (int testId = 1; testId <= t; ++testId) {
  63.         solve(testId);
  64.     }
  65.     return 0;
  66. }
  67.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement