#include<bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef pair<ll, ll> pii;
#define fi first
#define se second
#define gcd __gcd
#define endl '\n'
const int N=200050,M=1000000007;
const ll INF=0x3f3f3f3f3f3f3f3f;
ll n, q, d[N], u[N], t, l, r;
ll pos(ll i, ll t){return t/u[i]*u[i]-i;}
ll lower(ll t, ll x){
ll l=-1, r=n+1;
while(r-l>1){
ll m=l+r>>1;
if(pos(m, t)<=x) r=m;
else l=m;
}
return r;
}
ll upper(ll t, ll x){
ll l=-1, r=n+1;
while(r-l>1){
ll m=l+r>>1;
if(pos(m, t)>=x) l=m;
else r=m;
}
return l;
}
signed main(){
ios_base::sync_with_stdio(NULL);
cin.tie(nullptr); cout.tie(nullptr);
cin>>n>>q;
for(ll i=1; i<=n; ++i) cin>>d[i];
u[0]=1;
for(ll i=1; i<=n; ++i){
ll need=(d[i]+u[i-1]-1)/u[i-1];
u[i]=need*u[i-1];
// cout<<u[i]<<endl;
}
while(q--){
cin>>t>>l>>r;
ll up=upper(t, l);
ll lo=lower(t, r);
if(pos(lo, t)>=l && pos(lo, t)<=r) cout<<up-lo+1<<endl;
else cout<<"0\n";
// cout<<lo<<" "<<up<<endl;
}
return 0;
}
Compilation message
worst_reporter3.cpp: In function 'll lower(ll, ll)':
worst_reporter3.cpp:20:9: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
20 | ll m=l+r>>1;
| ~^~
worst_reporter3.cpp: In function 'll upper(ll, ll)':
worst_reporter3.cpp:30:9: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
30 | ll m=l+r>>1;
| ~^~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
8 ms |
2436 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
340 KB |
Output is correct |
2 |
Correct |
1 ms |
468 KB |
Output is correct |
3 |
Correct |
1 ms |
340 KB |
Output is correct |
4 |
Correct |
1 ms |
340 KB |
Output is correct |
5 |
Correct |
1 ms |
340 KB |
Output is correct |
6 |
Correct |
1 ms |
340 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
8 ms |
2436 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |