Advertisement
yeskendir_sultanov

Problem B new version

May 19th, 2024
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 2.57 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, int> get(int v, int tl, int tr, int l, int r, ll x) {
  72.     if (l > r) {
  73.         return {0, 0};
  74.     }
  75.     if (tl == l && r == tr) {
  76.         int k = (lower_bound(tvalues[v].begin(), tvalues[v].end(), x) - tvalues[v].begin());
  77.         return {t[v], k};
  78.     }
  79.    
  80.     int tm = (tl + tr) / 2;
  81.     auto L = get(v * 2, tl, tm, l, min(tm, r), x);
  82.     auto R = get(v * 2 + 1, tm + 1, tr, max(tm + 1, l), r, x);
  83.    
  84.     ll mx = max(L.first, R.first);
  85.     int less = L.second + R.second;
  86.    
  87.     return {mx, less};
  88. }
  89.  
  90. int main() {
  91.     cin >> n >> m;
  92.     for (int i = 1; i <= n; ++i) {
  93.         cin >> a[i];
  94.     }
  95.     build(1, 1, n);
  96.    
  97.    
  98.     for (int i = 0; i < m; ++i) {
  99.         int l, r, x;
  100.         cin >> l >> r >> x;
  101.         auto response = get(1, 1, n, l, r, x);
  102.         ll mx = response.first;
  103.         int k = response.second;
  104.         if (mx < x) {
  105.             cout << calc(mx, x) + k - 1 << endl;    
  106.         } else {
  107.             cout << k << endl;
  108.         }
  109.     }
  110.  
  111.     return 0;
  112. }
  113.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement