-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path2538.cpp
44 lines (44 loc) · 1.01 KB
/
2538.cpp
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
// Ivan Carvalho
// Solution to https://www.beecrowd.com.br/judge/problems/view/2538
#include <algorithm>
#include <cstdio>
#include <cstring>
#define MAXN 100010
#define LSOne(S) (S & (-S))
using namespace std;
int bit[MAXN], resp;
void update(int idx) {
while (idx < MAXN) {
bit[idx]++;
idx += LSOne(idx);
}
}
int read(int idx) {
int ans = 0;
while (idx > 0) {
ans += bit[idx];
idx -= LSOne(idx);
}
return ans;
}
int query(int a, int b) { return read(b) - read(a - 1); }
int main() {
int ip, m;
while (scanf("%d %d", &ip, &m) != EOF) {
memset(bit, 0, sizeof(bit));
int resp = 0;
while (m--) {
int pc, na;
scanf("%d %d", &pc, &na);
int ini = max(pc - ip, 1);
int fim = min(pc + ip, MAXN - 1);
int intervalo = query(ini, fim);
if (intervalo <= na) {
update(pc);
resp++;
}
}
printf("%d\n", resp);
}
return 0;
}