이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const int N = 1e5 + 3;
vector<int> st[2][4 * N];
int a[2][N];
void build(bool b, int l, int r, int node){
if(l == r){
st[b][node] = {a[b][l]};
return;
}
int mid = (l + r) >> 1;
build(b, l, mid, 2 * node + 1);
build(b, mid + 1, r, 2 * node + 2);
for(int x : st[b][2 * node + 1])st[b][node].push_back(x);
for(int x : st[b][2 * node + 2])st[b][node].push_back(x);
sort(st[b][node].begin(),st[b][node].end());
return;
}
int query(bool b, int ql, int qr, int x, int l, int r, int node){
if(l > r)
return 0;
if(ql <= l && r <= qr){
return st[b][node].end() - lower_bound(st[b][node].begin(), st[b][node].end(), x);
}
if(r < ql || l > qr){
return 0;
}
int mid = (l + r) >> 1;
return query(b, ql, qr, x, l, mid, 2 * node + 1) +
query(b, ql, qr, x, mid + 1, r, 2 * node + 2);
}
int main()
{
ios::sync_with_stdio(0),cin.tie(0),cout.tie(0);
int n,q;
cin>>n>>q;
pair<int,int>arr[n];
for(int i = 0; i < n; i++){
cin>>arr[i].first>>arr[i].second;
}
sort(arr,arr+n);
for(int i = 0; i < n; i++){
a[0][i] = arr[i].second;
a[1][i] = arr[i].first + arr[i].second;
}
build(0,0,n-1,0);
build(1,0,n-1,0);
while(q--){
int x,y,z;
cin>>x>>y>>z;
int l = lower_bound(arr, arr+n, make_pair(x, 0)) - arr;
if(x + y >= z){
//[l,n-1]
cout<<query(0, l, n - 1, y, 0, n - 1, 0)<<'\n';
} else{
int r = n;
int lo = l, hi = n - 1, mid;
while(lo <= hi){
mid = (lo + hi) >> 1;
if(y >= x - a[0][mid]){
r = mid;
hi = mid - 1;
} else{
lo = mid + 1;
}
}
cout<<query(0, l, r - 1, y, 0, n - 1, 0) + query(1, r, n - 1, z, 0, n - 1, 0)<<'\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... |