#include <bits/stdc++.h>
using namespace std;
#define sz(s) (int)s.size()
#define ff first
#define ss second
#define ll long long
ll n, m;
int main(){
ios::sync_with_stdio (false); cin.tie(nullptr);
cin >> n >> m;
ll nq = sqrt(n), cnt = 0;
vector <ll> a(n+1), id(nq+10), an(nq+10), mmx(nq+10);
vector <pair<ll,ll>> rn(n+1);
for(int i = 1; i <= n; i++){
cin >> a[i];
}
int b[nq+10][n+10];
for(int i = 1; i <= n; i++){
cnt++;
ll mx = 0;
for(int j = i; j <= min(i+nq-1,n); j++){
if(mx > a[j]) an[cnt] = max(an[cnt],mx+a[j]);
mx = max(mx,a[j]);
id[j] = cnt;
}
mmx[cnt] = mx;
rn[cnt] = {i,min(i+nq-1,n)};
i = min(i+nq-1,n);
}
vector <ll> v;
for(int i = 1; i <= n; i++){
v.clear();
for(int j = i; j <= min(i+nq-1,n); j++){
v.push_back(a[j]);
}
sort(v.begin(), v.end());
ll ind = 0;
ll mx = 0;
for(int j = i-1; j >= 1; j--){
mx = max(mx,a[j]);
while(ind < sz(v)-1 and v[ind+1] < mx) ind++;
b[id[i]][j] = v[ind];
}
i = min(i+nq-1,n);
}
for(int i = 1; i <= m; i++){
ll l, r, k;
cin >> l >> r >> k;
ll mx = 0, ans = 0;
for(int j = l; j <= min(rn[id[l]].ss,r); j++){
if(a[j] < mx) ans = max(ans,a[j]+mx);
mx = max(mx,a[j]);
}
ll ind = id[l]+1;
while(ind < id[r]){
ans = max(ans,an[ind]);
if(b[ind][l] < mx and b[ind][l] != 0) ans = max(ans,mx+b[ind][l]);
mx = max(mx,mmx[ind]);
ind++;
}
if(id[l] != id[r]){
for(int j = rn[id[r]].ff; j <= r; j++){
if(a[j] < mx) ans = max(ans,mx+a[j]);
mx = max(mx,a[j]);
}
}
cout << (ans > k ? 0 : 1) << '\n';
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
344 KB |
Output is correct |
3 |
Runtime error |
1 ms |
604 KB |
Execution killed with signal 11 |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
344 KB |
Output is correct |
3 |
Runtime error |
1 ms |
604 KB |
Execution killed with signal 11 |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
189 ms |
262144 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
2447 ms |
262144 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
344 KB |
Output is correct |
3 |
Runtime error |
1 ms |
604 KB |
Execution killed with signal 11 |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
344 KB |
Output is correct |
3 |
Runtime error |
1 ms |
604 KB |
Execution killed with signal 11 |
4 |
Halted |
0 ms |
0 KB |
- |