-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path2432.cpp
35 lines (35 loc) · 849 Bytes
/
2432.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
// Ivan Carvalho
// Solution to https://www.beecrowd.com.br/judge/problems/view/2432
#include <cstdio>
#define MAXN 100010
typedef long long ll;
ll n, m, resposta;
ll vetor[MAXN];
ll busca(ll valor) {
if (valor > vetor[n]) return 0;
ll ini = 1, fim = n, meio;
while (ini < fim) {
meio = (ini + fim) / 2;
if (vetor[meio] >= valor)
fim = meio;
else
ini = meio + 1;
}
return n + 1 - fim;
}
int main() {
scanf("%lld %lld", &n, &m);
for (ll i = 1; i <= n; i++) {
ll davez;
scanf("%lld", &vetor[i]);
vetor[i] *= vetor[i];
}
while (m--) {
ll x, y;
scanf("%lld %lld", &x, &y);
// printf("%lld %lld %lld\n",x,y,busca(x*x + y*y));
resposta += busca(x * x + y * y);
}
printf("%lld\n", resposta);
return 0;
}