#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){
// cerr<<"PRINTING SEG[k] ";
// for(int i : seg[k]) cout<<i<<" "; cout<<endl;
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+1, m+1 ,r);
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++){
// cerr<<i+1<<" "<<r<<endl;
// cerr<<"QUERY: "<<i<<" "<< seg.query(i+1,r,v[i])<<endl;
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);
| ~~~~^~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
3 |
Incorrect |
4 ms |
348 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
3 |
Incorrect |
4 ms |
348 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
612 ms |
203400 KB |
Output is correct |
2 |
Correct |
656 ms |
204824 KB |
Output is correct |
3 |
Correct |
647 ms |
204652 KB |
Output is correct |
4 |
Correct |
656 ms |
203540 KB |
Output is correct |
5 |
Correct |
544 ms |
204688 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
61 ms |
23940 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
3 |
Incorrect |
4 ms |
348 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
3 |
Incorrect |
4 ms |
348 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |