#include<bits/stdc++.h>
using namespace std;
#define endl '\n'
struct MST{
int n;
vector<vector<int>> seg;
void init(int n1){
n = 1;
while(n < n1) n*=2;
seg.assign(2*n, vector<int>());
}
void merge(int i, int j, int k){
int l = 0;
int r = 0;
while(l < seg[j].size() && r < seg[k].size()){
if(seg[j][l] < seg[k][r]){
seg[i].push_back(seg[j][l]); l++;
}
else{
seg[i].push_back(seg[k][r]); r++;
}
}
while(l < seg[j].size()){
seg[i].push_back(seg[j][l]); l++;
}
while(r < seg[k].size()){
seg[i].push_back(seg[k][r]); r++;
}
}
void build(vector<int> v){
for(int i = n; i < 2*n; i++){
if(i-n >= v.size()) seg[i].push_back(0);
else seg[i].push_back(v[i-n]);
}
for(int i = n-1; i>=0; i--){
merge(i,2*i, 2*i+1);
}
}
int query(int ql, int qr, int v, int k, int l, int r){
if(r < ql || l > qr) return 0;
if(ql <= l && r<= qr){
return *(lower_bound(seg[k].begin(),seg[k].end(), v)-1);
}
int m = (l+r) / 2;
int x = query(ql, qr, v, 2*k, l ,m);
int y = query(ql, qr, v, 2*k, l ,m);
return max(x,y);
}
int query(int ql, int qr, int v){
return query(ql, qr, v, 1, 0, n-1);
}
};
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
int n,q; cin>>n>>q;
vector<int> v(n); for(int& i : v) cin>>i;
vector<int> pre(n+1);
for(int i = 1; i<n; i++){
pre[i+1] = pre[i] + (v[i] < v[i-1]);
}
MST seg; seg.init(n); seg.build(v);
while(q--){
int l,r,k; cin>>l>>r>>k;
if(n > 6000){
if(pre[r] - pre[l] == 0) cout<<1<<endl;
else cout<<0<<endl;
}
else{
l--; r--;
int mx = 0;
for(int i = l; i < r; i++){
mx = max(mx, v[i] + seg.query(i+1,r,v[i]));
}
if(mx > k) cout<<0<<endl;
else cout<<1<<endl;
}
}
}
Compilation message
sortbooks.cpp: In member function 'void MST::merge(int, int, int)':
sortbooks.cpp:18:11: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
18 | while(l < seg[j].size() && r < seg[k].size()){
| ~~^~~~~~~~~~~~~~~
sortbooks.cpp:18:32: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
18 | while(l < seg[j].size() && r < seg[k].size()){
| ~~^~~~~~~~~~~~~~~
sortbooks.cpp:26:11: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
26 | while(l < seg[j].size()){
| ~~^~~~~~~~~~~~~~~
sortbooks.cpp:29:11: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
29 | while(r < seg[k].size()){
| ~~^~~~~~~~~~~~~~~
sortbooks.cpp: In member function 'void MST::build(std::vector<int>)':
sortbooks.cpp:36:11: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
36 | if(i-n >= v.size()) seg[i].push_back(0);
| ~~~~^~~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
3 |
Incorrect |
1 ms |
348 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
3 |
Incorrect |
1 ms |
348 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
618 ms |
204420 KB |
Output is correct |
2 |
Correct |
630 ms |
205208 KB |
Output is correct |
3 |
Correct |
619 ms |
205128 KB |
Output is correct |
4 |
Correct |
624 ms |
203160 KB |
Output is correct |
5 |
Correct |
569 ms |
204012 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
62 ms |
23944 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
3 |
Incorrect |
1 ms |
348 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
3 |
Incorrect |
1 ms |
348 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |