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;
struct E { long long a, b, c, t, i; } a[200100];
long long ans[100100];
auto sortall = [](E&a, E&b) {
if (a.a != b.a) return a.a > b.a;
// if (a.b != b.b) return a.b > b.b;
// if (a.c != b.c) return a.c > b.c;
return a.t > b.t;
};
auto sortb = [](E&a, E&b) {return a.b > b.b;};
int fw[200100];
stack<pair<int,int>> h;
void add (int a, int v) { h.push({a, v}); for (int i = a; i > 0; i-=(i&-i)) fw[i]+=v; }
long long query (int a) {long long ans = 0; for (int i = a; i <= 200000; i+=(i&-i)) ans+=fw[i]; return ans;}
void clear () { while (!h.empty()) {auto t = h.top(); h.pop(); add(t.first, -t.second); h.pop();}}
vector<int> sum;
int coord (int x) { return int(lower_bound(sum.begin(), sum.end() ,x) - sum.begin() + 1); }
void CDQ (int l, int r) {
if (l == r) return;
int m = (l+r)/2;
CDQ(l, m); CDQ(m+1, r);
sort(a+l, a+m+1, sortb); sort(a+m+1, a+r+1, sortb);
int i = l, j = m+1;
clear();
while (i <= m and j <= r) {
if (a[i].b >= a[j].b) {
if (a[i].t == 0) {i++; continue;}
add(a[i].c, 1);
i++;
}
else {
if (a[j].i == -1) { j++; continue; }
ans[a[j].i] += query(a[j].c);
j++;
}
}
while (j <= r) {
if (a[j].i == -1) { j++; continue; }
ans[a[j].i] += query(a[j].c);
j++;
}
}
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int n, q; cin >> n >> q;
int cnt = 0;
for (int i = 0; i < n; i++) {
long long s, t; cin >> s >> t;
a[++cnt] = {s+1, t+1, s+t+1, 1, -1};
sum.push_back(s+t+1);
}
for (int i = 0; i < q; i++) {
long long x, y, z; cin >> x >> y >> z;
a[++cnt] = {x+1, y+1, z+1, 0, i};
sum.push_back(z+1);
}
sort(sum.begin(), sum.end());
// sum.resize(unique(sum.begin(), sum.end())-sum.begin());
for (int i = 1; i <= cnt; i++) a[i].c = coord(a[i].c);
sort(a+1, a+cnt+1, sortall);
CDQ(1, cnt);
for (int i = 0; i < q; i++) cout << ans[i] << '\n';
return 0;
}
# | 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... |