이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using pii = pair<int, int>;
#define pb push_back
#define ff first
#define ss second
int main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int n, q; cin>>n>>q;
vector<int> d(n + 1);
for (int i = 1; i <= n; i++){
cin>>d[i];
}
vector<int> k(n + 1);
k[1] = d[1];
for (int i = 2; i <= n; i++){
k[i] = ceil(1.0 * (d[i] + 1) / k[i - 1]) * k[i - 1];
}
// x[i] = t * k[i] - i, t >= 0
for (int i = 1; i <= q; i++){
int t, l, r; cin>>t>>l>>r;
vector<int> x(n + 1);
int p = t - 1;
for (int j = 1; j <= n; j++){
int f = (p + j) / k[j];
x[j] = f * k[j] - j;
p = x[j] - 1;
}
int out = (l <= t && t <= r);
for (int j = 1; j <= n; j++){
out += (l <= x[j] && x[j] <= r);
}
cout<<out<<"\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... |