Advertisement
yeskendir_sultanov

Problem B

May 19th, 2024
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 2.55 KB | Source Code | 0 0
  1. #include <bits/stdc++.h>
  2. #define ll long long
  3. #define pb push_back
  4.  
  5. using namespace std;
  6.  
  7. const int maxn = 1e5 + 1;
  8.  
  9. int n, m;
  10. ll t[4 * maxn], a[maxn];
  11. vector<ll> tvalues[4 * maxn];
  12.  
  13. int calc(ll x, ll y) {
  14.     if (x >= y) {
  15.         return 0;
  16.     }
  17.     int res = 0;
  18.     while (x < y) {
  19.         x += x;
  20.         res++;
  21.     }
  22.     return res;
  23. }
  24.  
  25. vector<ll> merge(vector<ll> &a, vector<ll> &b) {
  26.     vector<ll> res;
  27.     int i = 0, j = 0;
  28.     while (res.size() < a.size() + b.size()) {
  29.         if (i < int(a.size()) && j < int(b.size()) && a[i] > b[j]) {
  30.             res.push_back(b[j++]);
  31.         } else if (i >= int(a.size())) {
  32.             res.push_back(b[j++]);
  33.         } else {
  34.             res.push_back(a[i++]);
  35.         }
  36.     }
  37.    
  38.     return res;
  39. }
  40.  
  41. void build(int v, int tl, int tr) {
  42.     if (tl == tr) {
  43.         t[v] = a[tl];
  44.         tvalues[v] = {a[tl]};
  45.     } else {
  46.         int tm = (tl + tr) / 2;
  47.         build(v * 2, tl, tm);
  48.         build(v * 2 + 1, tm + 1, tr);
  49.         t[v] = max(t[v * 2], t[v * 2 + 1]);
  50.         tvalues[v] = merge(tvalues[v * 2], tvalues[v * 2 + 1]);
  51.     }
  52. }
  53.  
  54. void update(int v, int tl, int tr, int pos, int x) {
  55.     if (tl == tr) {
  56.         t[v] = x;
  57.         tvalues[v] = {x};
  58.     } else {
  59.         int tm = (tl + tr) / 2;
  60.         if (pos <= tm) {
  61.             update(v * 2, tl, tm, pos, x);
  62.         } else {
  63.             update(v * 2 + 1, tm + 1, tr, pos, x);
  64.         }
  65.        
  66.         t[v] = max(t[v * 2], t[v * 2 + 1]);
  67.         tvalues[v] = merge(tvalues[v * 2], tvalues[v * 2 + 1]);
  68.     }
  69. }
  70.  
  71. pair <ll, vector<ll>> get(int v, int tl, int tr, int l, int r) {
  72.     if (l > r) {
  73.         return {0, {}};
  74.     }
  75.     if (tl == l && r == tr) {
  76.         return {t[v], tvalues[v]};
  77.     }
  78.    
  79.     int tm = (tl + tr) / 2;
  80.     auto L = get(v * 2, tl, tm, l, min(tm, r));
  81.     auto R = get(v * 2 + 1, tm + 1, tr, max(tm + 1, l), r);
  82.    
  83.     ll mx = max(L.first, R.first);
  84.     auto vct = merge(L.second, R.second);
  85.    
  86.     return {mx, vct};
  87. }
  88.  
  89. int main() {
  90.     cin >> n >> m;
  91.     for (int i = 1; i <= n; ++i) {
  92.         cin >> a[i];
  93.     }
  94.     build(1, 1, n);
  95.    
  96.    
  97.     for (int i = 0; i < m; ++i) {
  98.         int l, r, x;
  99.         cin >> l >> r >> x;
  100.         auto response = get(1, 1, n, l, r);
  101.         ll mx = response.first;
  102.         auto vct = response.second;
  103.         int k = (lower_bound(vct.begin(), vct.end(), x) - vct.begin());
  104.         if (k == 0) {
  105.             cout << 0 << endl;
  106.         } else {
  107.             cout << calc(mx, x) + k - 1 << endl;
  108.         }
  109.     }
  110.  
  111.     return 0;
  112. }
  113.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement