#include <bits/stdc++.h>
using namespace std;
#define TASK "long"
#define fi first
#define se second
#define ll long long
#define pb push_back
#define ALL(x) (x).begin(), (x).end()
#define GETBIT(mask, i) ((mask) >> (i) & 1)
#define MASK(i) ((1LL) << (i))
#define SZ(x) ((int)(x).size())
#define mp make_pair
#define CNTBIT(mask) __builtin_popcount(mask)
template<class X, class Y> bool maximize(X &x, Y y){ if (x < y) {x = y; return true;} return false;};
template<class X, class Y> bool minimize(X &x, Y y){ if (x > y) {x = y; return true;} return false;};
typedef pair<int, int> ii;
const int N = 1e5 + 5;
const int INF = 2e9 + 7;
const int mod = 1e9 + 7;
struct Fenwick2d {
};
struct Fenwick {
int n;
vector<int> v;
Fenwick(int _n = 0) {
n = _n;
v.assign(n + 5, 0);
}
void update(int x, int c) {
for(; x > 0; x -= x & -x) v[x] += c;
}
int get(int x) {
int ans = 0;
for(; x <= n; x += x & -x) ans += v[x];
return ans;
}
} fw1, fw2;
int n, q;
int ans[N];
pair<int, int> a[N];
vector<pair<int, pair<int, int>>> queries[N];
void read() {
cin >> n >> q;
for(int i = 1; i <= n; i++) cin >> a[i].fi >> a[i].se;
}
vector<int> valB, valC;
void compress() {
for(int i = 1; i <= n; i++) {
valB.push_back(a[i].se);
valC.push_back(a[i].fi + a[i].se);
}
valB.push_back(INF);
valC.push_back(INF);
sort(ALL(valB));
valB.erase(unique(ALL(valB)), valB.end());
sort(ALL(valC));
valC.erase(unique(ALL(valC)), valC.end());
}
void solve() {
sort(a + 1, a + n + 1);
for(int i = 1; i <= q; i++) {
int A, B, C; cin >> A >> B >> C;
int p = lower_bound(a + 1, a + n + 1, mp(A, 0)) - a;
if (p > n) ans[i] = 0;
else {
queries[p].push_back({i, mp(B, C)});
}
}
compress();
fw1 = Fenwick(SZ(valB));
fw2 = Fenwick(SZ(valC));
for(int i = n; i >= 1; i--) {
int b = lower_bound(ALL(valB), a[i].se) - valB.begin() + 1;
fw1.update(b, 1);
int c = lower_bound(ALL(valC), a[i].fi + a[i].se) - valC.begin() + 1;
fw2.update(c, 1);
// cerr << "BC: " << b << ' ' << c << endl;
for(auto &query: queries[i]) {
int id = query.fi;
int B = query.se.fi;
int C = query.se.se;
B = lower_bound(ALL(valB), B) - valB.begin() + 1;
C = lower_bound(ALL(valC), C) - valC.begin() + 1;
// cerr << id << ' ' << i << ' ' << n - i + 1 << endl;
ans[id] = fw1.get(B) + fw2.get(C) - (n - i + 1);
for(int j = i; j <= n; j++) if (a[j].se < query.se.fi && a[j].fi + a[j].se < query.se.se) {
++ans[id];
}
}
}
for(int i = 1; i <= q; i++) cout << ans[i] << endl;
}
signed main() {
ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
if (fopen(TASK".inp", "r")) {
freopen(TASK".inp", "r", stdin);
freopen(TASK".out", "w", stdout);
}
int test = 1;
// cin >> test;
while(test--) {
read();
solve();
}
return 0;
}
Compilation message
examination.cpp: In function 'int main()':
examination.cpp:97:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
97 | freopen(TASK".inp", "r", stdin);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
examination.cpp:98:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
98 | freopen(TASK".out", "w", stdout);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
2640 KB |
Output is correct |
2 |
Correct |
1 ms |
2640 KB |
Output is correct |
3 |
Correct |
1 ms |
2812 KB |
Output is correct |
4 |
Correct |
2 ms |
2640 KB |
Output is correct |
5 |
Correct |
1 ms |
2640 KB |
Output is correct |
6 |
Correct |
1 ms |
2640 KB |
Output is correct |
7 |
Correct |
20 ms |
3140 KB |
Output is correct |
8 |
Correct |
20 ms |
2896 KB |
Output is correct |
9 |
Correct |
22 ms |
2896 KB |
Output is correct |
10 |
Correct |
16 ms |
2896 KB |
Output is correct |
11 |
Correct |
14 ms |
2896 KB |
Output is correct |
12 |
Correct |
11 ms |
2896 KB |
Output is correct |
13 |
Correct |
17 ms |
3064 KB |
Output is correct |
14 |
Correct |
17 ms |
2896 KB |
Output is correct |
15 |
Correct |
17 ms |
2896 KB |
Output is correct |
16 |
Correct |
11 ms |
3036 KB |
Output is correct |
17 |
Correct |
13 ms |
2896 KB |
Output is correct |
18 |
Correct |
14 ms |
2896 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
3054 ms |
9824 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
3054 ms |
9824 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
2640 KB |
Output is correct |
2 |
Correct |
1 ms |
2640 KB |
Output is correct |
3 |
Correct |
1 ms |
2812 KB |
Output is correct |
4 |
Correct |
2 ms |
2640 KB |
Output is correct |
5 |
Correct |
1 ms |
2640 KB |
Output is correct |
6 |
Correct |
1 ms |
2640 KB |
Output is correct |
7 |
Correct |
20 ms |
3140 KB |
Output is correct |
8 |
Correct |
20 ms |
2896 KB |
Output is correct |
9 |
Correct |
22 ms |
2896 KB |
Output is correct |
10 |
Correct |
16 ms |
2896 KB |
Output is correct |
11 |
Correct |
14 ms |
2896 KB |
Output is correct |
12 |
Correct |
11 ms |
2896 KB |
Output is correct |
13 |
Correct |
17 ms |
3064 KB |
Output is correct |
14 |
Correct |
17 ms |
2896 KB |
Output is correct |
15 |
Correct |
17 ms |
2896 KB |
Output is correct |
16 |
Correct |
11 ms |
3036 KB |
Output is correct |
17 |
Correct |
13 ms |
2896 KB |
Output is correct |
18 |
Correct |
14 ms |
2896 KB |
Output is correct |
19 |
Execution timed out |
3054 ms |
9824 KB |
Time limit exceeded |
20 |
Halted |
0 ms |
0 KB |
- |