#include<bits/stdc++.h>
using namespace std;
struct E { long long a, b, c, t, i; } a[200100];
long long ans[100100];
auto sorta = [](E&a, E&b) {return a.a > b.a;};
auto sortb= [](E&a, E&b) {return a.b > b.b;};
int fw[300100];
stack<pair<int,int>> h;
void add (int a, int v) { h.push({a, v}); for (int i = a; i <= 300000; i+=(i&-i)) fw[i]+=v; }
long long query (int a) {long long ans = 0; for (int i = a; i > 0; i-=(i&-i)) ans+=fw[i]; return ans;}
long long ask (int a) { return query(300000) - query(a-1); }
void clear () { while (!h.empty()) {auto t = h.top(); h.pop(); add(t.first, -t.second); h.pop();}}
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] += ask(a[j].c);
j++;
}
}
while (j <= r) {
if (a[j].i == -1) { j++; continue; }
ans[a[j].i] += ask(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};
}
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};
}
sort(a+1, a+cnt+1, sorta);
CDQ(1, cnt);
for (int i = 0; i < q; i++) cout << ans[i] << '\n';
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
5 ms |
384 KB |
Output is correct |
2 |
Correct |
5 ms |
384 KB |
Output is correct |
3 |
Correct |
4 ms |
384 KB |
Output is correct |
4 |
Runtime error |
5 ms |
512 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
5 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
336 ms |
10744 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
336 ms |
10744 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
5 ms |
384 KB |
Output is correct |
2 |
Correct |
5 ms |
384 KB |
Output is correct |
3 |
Correct |
4 ms |
384 KB |
Output is correct |
4 |
Runtime error |
5 ms |
512 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
5 |
Halted |
0 ms |
0 KB |
- |