#define here cerr<<"===========================================\n"
#define dbg(x) cerr<<#x<<": "<<x<<endl;
#include "bits/stdc++.h"
#include <ext/pb_ds/tree_policy.hpp>
#include <ext/pb_ds/assoc_container.hpp>
#define ld double
#define ll long long
#define llinf 100000000000000000LL // 10^17
#define pb push_back
#define popb pop_back
#define fi first
#define sc second
#define endl '\n'
#define pll pair<ll,ll>
#define pld pair<ld,ld>
#define sz(a) (ll)(a.size())
#define all(a) a.begin(),a.end()
#define ceri(a,l,r) {cerr<<#a<<": ";for(ll i_ = l;i_<=r;i_++) cerr<<a[i_]<< " ";cerr<<endl;}
#define cer(a) {cerr<<#a<<": ";for(ll x_ : a) cerr<<x_<< " ";cerr<<endl;}
#define daj_mi_malo_vremena ios_base::sync_with_stdio(false);cerr.tie(0);cout.tie(0);cin.tie(0);
using namespace std;
using namespace __gnu_pbds;
typedef tree<int,null_type,less<ll>,rb_tree_tag,tree_order_statistics_node_update> ordered_set;
#define maxn 100005
struct tupl{
ll x,y,sum,id;
} v[maxn];
ll n,q;
pll a[maxn];
ordered_set t[4*maxn];
ll ls[4*maxn],rs[4*maxn],root,tsz;
void upd(ll v,ll tl,ll tr,ll i,ll x,bool f){
if(f) t[v].insert(x);
else t[v].erase(x);
if(tl==tr) return;
ll mid = (tl+tr)/2;
if(i<=mid) upd(ls[v],tl,mid,i,x,f);
else upd(rs[v],mid+1,tr,i,x,f);
}
ll get(ll v,ll tl,ll tr,ll l,ll r,ll x){
if(r<tl||l>tr||tl>tr) return 0;
if(l<=tl&&tr<=r){
ll cnt = t[v].order_of_key(x);
return sz(t[v]) - cnt;
}
ll mid = (tl+tr)/2;
return get(ls[v],tl,mid,l,r,x) + get(rs[v],mid+1,tr,l,r,x);
}
void init(ll &v,ll tl,ll tr){
v = ++tsz;
if(tl==tr) return;
ll mid = (tl+tr)/2;
init(ls[v],tl,mid);
init(rs[v],mid+1,tr);
}
bool cmp(pll x,pll y){return x.fi+x.sc<y.fi+y.sc;}
bool cmp2(tupl x,tupl y){return x.sum<y.sum;}
map<ll,ll> mp;
set<ll> s;
ll it = 0;
ll ans[maxn];
void tc(){
cin >> n >> q;
for(ll i = 1;i<=n;i++) cin >> a[i].fi >> a[i].sc;
for(ll i = 1;i<=q;i++) cin >> v[i].x >> v[i].y >> v[i].sum;
for(ll i = 1;i<=q;i++) v[i].id = i;
sort(a+1,a+1+n,cmp);
sort(v+1,v+1+q,cmp2);
for(ll i = 1;i<=n;i++) s.insert(a[i].fi),s.insert(a[i].sc),s.insert(v[i].x),s.insert(v[i].y);
for(ll x : s) mp[x] = ++it;
init(root,1,it);
for(ll i = 1;i<=n;i++) upd(root,1,it,mp[a[i].fi],mp[a[i].sc],1);
ll k = 1;
for(ll j = 1;j<=q;j++){
while(k<=n&&a[k].fi+a[k].sc<v[j].sum){
upd(root,1,it,mp[a[k].fi],mp[a[k].sc],0);
k++;
}
ans[v[j].id] = get(root,1,it,mp[v[j].x],it,mp[v[j].y]);
}
for(ll i = 1;i<=q;i++) cout<<ans[i]<<endl;
}
int main(){
daj_mi_malo_vremena
int t; t = 1;
while(t--){
tc();
}
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
25 ms |
31644 KB |
Output is correct |
2 |
Correct |
25 ms |
31632 KB |
Output is correct |
3 |
Correct |
25 ms |
31636 KB |
Output is correct |
4 |
Correct |
26 ms |
31652 KB |
Output is correct |
5 |
Correct |
27 ms |
31676 KB |
Output is correct |
6 |
Correct |
26 ms |
31600 KB |
Output is correct |
7 |
Correct |
48 ms |
35704 KB |
Output is correct |
8 |
Correct |
47 ms |
35660 KB |
Output is correct |
9 |
Correct |
48 ms |
35632 KB |
Output is correct |
10 |
Incorrect |
37 ms |
33484 KB |
Output isn't correct |
11 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1959 ms |
133112 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1959 ms |
133112 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
25 ms |
31644 KB |
Output is correct |
2 |
Correct |
25 ms |
31632 KB |
Output is correct |
3 |
Correct |
25 ms |
31636 KB |
Output is correct |
4 |
Correct |
26 ms |
31652 KB |
Output is correct |
5 |
Correct |
27 ms |
31676 KB |
Output is correct |
6 |
Correct |
26 ms |
31600 KB |
Output is correct |
7 |
Correct |
48 ms |
35704 KB |
Output is correct |
8 |
Correct |
47 ms |
35660 KB |
Output is correct |
9 |
Correct |
48 ms |
35632 KB |
Output is correct |
10 |
Incorrect |
37 ms |
33484 KB |
Output isn't correct |
11 |
Halted |
0 ms |
0 KB |
- |