This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
#define int long long
const int maxn = 5e5 + 5, INF = 1e9;
int n;
vector<pair<int,int>> a;
int cnt(int x, int t) {
int l = 0, r = a.size()-2;
while (l<r) {
int mid = (l+r+1)/2;
if (a[mid].second + (t - t%a[mid].first) >= x) l = mid;
else r = mid-1;
}
// cout << "test " << x << " " << t << " " << l << endl;
int pos = a[l].second + (t - t%a[l].first);
if (pos < x) return 0;
return min(pos - x, a[l].second - a[l+1].second-1) + (-a[l].second + 1);
}
signed main() {
ios::sync_with_stdio(0); cin.tie(0);
int q;
cin >> n >> q;
int cur = 0;
a.push_back({1, 0});
for (int i=1;i<=n;i++) {
int x;
cin >> x;
if (x > cur && cur <= INF) {
if (cur==0) cur = x;
else cur = ((x+cur-1)/cur) * cur;
if (cur <= INF) a.push_back({cur, -i});
}
}
a.push_back({1e18, -n-1});
// for (auto [x, y]:a) cout << x << " " << y << endl;
while (q--) {
int t, l, r;
cin >> t >> l >> r;
cout << cnt(l, t) - cnt(r+1, t) << "\n";
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |