This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "bits/stdc++.h"
using namespace std;
const int MAXN = 1e6 + 10;
const int MOD = 1e9 + 7;
mt19937_64 rng((int)std::chrono::steady_clock::now().time_since_epoch().count());
int rnd(int x, int y) {
int u = uniform_int_distribution<int>(x, y)(rng); return u;
}
struct node {
int val;
int ans; // maximum sum inversion in range
int l, r;
vector<int> v; // SORTED!!! crazy memory moment
} st[4*MAXN];
int w[MAXN];
int n, m;
vector<pair<int, int> > v[MAXN];
void bu(int l, int r, int idx) {
st[idx].l = l;
st[idx].r = r;
v[l].push_back({r, idx});
st[idx].v.resize(r-l+1);
if(l == r) {
cin >> w[l];
st[idx].val = w[l];
st[idx].v[0] = w[l];
st[idx].ans = -1;
return;
}
int mid = (l + r) >> 1;
bu(l, mid, 2*idx + 1);
bu(mid+1, r, 2*idx + 2);
int lptr = 0, rptr = 0;
int nxt = 0;
while(!(lptr == st[2*idx + 1].v.size() && rptr == st[2*idx + 2].v.size())) {
if(lptr == st[2*idx+1].v.size()) {
st[idx].v[nxt] = st[2*idx+2].v[rptr];
rptr++;
nxt++;
}
else if(rptr == st[2*idx+2].v.size()) {
st[idx].v[nxt] = st[2*idx+1].v[lptr];
lptr++;
nxt++;
}
else {
if(st[2*idx+1].v[lptr] < st[2*idx+2].v[rptr]) {
st[idx].v[nxt] = st[2*idx+1].v[lptr];
lptr++;
nxt++;
}
else {
st[idx].v[nxt] = st[2*idx+2].v[rptr];
rptr++;
nxt++;
}
}
}
st[idx].ans = max(st[2*idx+1].ans, st[2*idx+2].ans);
int ma = st[2*idx+1].v[st[2*idx+1].v.size() - 1];
int lb = 0, rb = st[2*idx+2].v.size() - 1;
while(lb < rb) {
int mid = (lb + rb + 1) >> 1;
if(st[2*idx+2].v[mid] < ma) lb = mid;
else rb = mid - 1;
}
if(st[2*idx+2].v[lb] < ma) {
st[idx].ans = max(st[idx].ans, st[2*idx+2].v[lb] + ma);
}
}
void build() {
bu(1, n, 0);
}
void solve(int tc) {
cin >> n >> m;
build();
for(int i=1; i<=n; i++) {
sort(v[i].begin(), v[i].end());
}
for(int i=0; i<m; i++) {
int l, r, k;
cin >> l >> r >> k;
int ma = -2e9;
int ans = -2e9;
while(l <= r) {
int lb = 0, rb = v[l].size() - 1;
while(lb < rb) {
int mid = (lb + rb + 1) >> 1;
if(v[l][mid].first <= r) lb = mid;
else rb = mid - 1;
}
int idx = v[l][lb].second;
ans = max(ans, st[idx].ans);
int lb2 = 0, rb2 = st[idx].v.size() - 1;
while(lb2 < rb2) {
int mid = (lb2 + rb2 + 1) >> 1;
if(st[idx].v[mid] < ma) lb2 = mid;
else rb2 = mid - 1;
}
if(st[idx].v[lb2] < ma) ans = max(ans, ma + st[idx].v[lb2]);
ma = max(ma, st[idx].v[st[idx].v.size() - 1]);
l = v[l][lb].first + 1;
}
cout << (ans > k ? "0\n" : "1\n");
}
}
int32_t main(){
ios::sync_with_stdio(0); cin.tie(0);
int t = 1; //cin >> t;
for(int i=1; i<=t; i++) solve(i);
}
Compilation message (stderr)
sortbooks.cpp: In function 'void bu(int, int, int)':
sortbooks.cpp:38:16: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
38 | while(!(lptr == st[2*idx + 1].v.size() && rptr == st[2*idx + 2].v.size())) {
| ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
sortbooks.cpp:38:50: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
38 | while(!(lptr == st[2*idx + 1].v.size() && rptr == st[2*idx + 2].v.size())) {
| ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
sortbooks.cpp:39:13: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
39 | if(lptr == st[2*idx+1].v.size()) {
| ~~~~~^~~~~~~~~~~~~~~~~~~~~~~
sortbooks.cpp:44:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
44 | else if(rptr == st[2*idx+2].v.size()) {
| ~~~~~^~~~~~~~~~~~~~~~~~~~~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |