#include<bits/stdc++.h> #include<ext/pb_ds/assoc_container.hpp> using namespace std; using namespace __gnu_pbds; constexpr int M=3e5+7; constexpr int base=1<<19; constexpr int mod=1e9+7; constexpr int oo=1e9+7; bool on[M]; int Tree[base<<1]; pair<int,int>mines[M]; pair<int,int>intervals[M]; vector<int>vctr; int bin(int x){ int p=0, k=vctr.size()-1, s; while(p < k){ s = (p+k)>>1; if(vctr[s] < x) p=s+1; else k=s; } return p; } int bin2(int x){ int p=0, k=vctr.size()-1, s; while(p<k){ s = (p+k)>>1; if(vctr[s] > x) p=s+1; else k=s; } return p; } void add(int v, int x){ v += base; Tree[v]=x; v>>=1; while(v){ Tree[v] = min(Tree[v<<1], Tree[(v<<1)+1]); v>>=1; } } int query(int a, int b){ int w=oo; a += base-1; b += base+1; while(b-a>1){ if(!(a&1)) w=min(w,Tree[a+1]); if(b&1) w=min(w,Tree[b-1]); a>>=1; b>>=1; } return w; } void add2(int v, int x){ v += base; Tree[v]=x; v>>=1; while(v){ Tree[v] = max(Tree[v<<1], Tree[(v<<1)+1]); v>>=1; } } int query2(int a, int b){ int w=0; a += base-1; b += base+1; while(b-a>1){ if(!(a&1)) w=max(w,Tree[a+1]); if(b&1) w=max(w,Tree[b-1]); a>>=1; b>>=1; } return w; } int main(){ ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); int n, res=0; long long x, y; cin >> n; for(int i=0; i<(base<<1); i++) Tree[i]=oo; for(int i=0; i<n; i++){ cin >> x >> y; add(i,i); mines[i]={x, y}; vctr.push_back(x); intervals[i].first = bin(x-y); intervals[i].first = query(intervals[i].first, i); add(i, intervals[i].first); } vctr.clear(); for(int i=0; i<(base<<1); i++) Tree[i]=0; for(int i=n-1; i>=0; i--){ x = mines[i].first; y = mines[i].second; add2(i,i); vctr.push_back(x); intervals[i].second = n - bin2(x+y) - 1; intervals[i].second = query2(i, intervals[i].second); add2(i, intervals[i].second); } //cout << '\n'; //for(int i=0; i<n; i++) cout << intervals[i].first << ' ' << intervals[i].second << '\n'; //cout << '\n'; for(int i=0; i<(1<<n); i++){ for(int j=0; j<n; j++) on[j] = ((1<<j)&i)>0; for(int j=0; j<n; j++) for(int k=0; k<n; k++) if(!on[j] && on[k] && intervals[k].first<=j && j<=intervals[k].second) goto A; res++; A:; } cout << res; return 0; }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 | #include<bits/stdc++.h> #include<ext/pb_ds/assoc_container.hpp> using namespace std; using namespace __gnu_pbds; constexpr int M=3e5+7; constexpr int base=1<<19; constexpr int mod=1e9+7; constexpr int oo=1e9+7; bool on[M]; int Tree[base<<1]; pair<int,int>mines[M]; pair<int,int>intervals[M]; vector<int>vctr; int bin(int x){ int p=0, k=vctr.size()-1, s; while(p < k){ s = (p+k)>>1; if(vctr[s] < x) p=s+1; else k=s; } return p; } int bin2(int x){ int p=0, k=vctr.size()-1, s; while(p<k){ s = (p+k)>>1; if(vctr[s] > x) p=s+1; else k=s; } return p; } void add(int v, int x){ v += base; Tree[v]=x; v>>=1; while(v){ Tree[v] = min(Tree[v<<1], Tree[(v<<1)+1]); v>>=1; } } int query(int a, int b){ int w=oo; a += base-1; b += base+1; while(b-a>1){ if(!(a&1)) w=min(w,Tree[a+1]); if(b&1) w=min(w,Tree[b-1]); a>>=1; b>>=1; } return w; } void add2(int v, int x){ v += base; Tree[v]=x; v>>=1; while(v){ Tree[v] = max(Tree[v<<1], Tree[(v<<1)+1]); v>>=1; } } int query2(int a, int b){ int w=0; a += base-1; b += base+1; while(b-a>1){ if(!(a&1)) w=max(w,Tree[a+1]); if(b&1) w=max(w,Tree[b-1]); a>>=1; b>>=1; } return w; } int main(){ ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); int n, res=0; long long x, y; cin >> n; for(int i=0; i<(base<<1); i++) Tree[i]=oo; for(int i=0; i<n; i++){ cin >> x >> y; add(i,i); mines[i]={x, y}; vctr.push_back(x); intervals[i].first = bin(x-y); intervals[i].first = query(intervals[i].first, i); add(i, intervals[i].first); } vctr.clear(); for(int i=0; i<(base<<1); i++) Tree[i]=0; for(int i=n-1; i>=0; i--){ x = mines[i].first; y = mines[i].second; add2(i,i); vctr.push_back(x); intervals[i].second = n - bin2(x+y) - 1; intervals[i].second = query2(i, intervals[i].second); add2(i, intervals[i].second); } //cout << '\n'; //for(int i=0; i<n; i++) cout << intervals[i].first << ' ' << intervals[i].second << '\n'; //cout << '\n'; for(int i=0; i<(1<<n); i++){ for(int j=0; j<n; j++) on[j] = ((1<<j)&i)>0; for(int j=0; j<n; j++) for(int k=0; k<n; k++) if(!on[j] && on[k] && intervals[k].first<=j && j<=intervals[k].second) goto A; res++; A:; } cout << res; return 0; } |