import std; void main () { int N, K; readln.read(N, K); auto H = readln.split.to!(int[]); auto X = new int[](N); auto Y = new int[](N); foreach (i; 0..N) { readln.read(X[i], Y[i]); } // Hの条件がついているので、若いものをできるだけ潰す貪欲をして良さそう。 // 近傍探索もO(N^2)が通るので問題なし。 auto ord = iota(N).array; ord.sort!((a, b) => H[a] < H[b]); int ans = N; foreach (i; 0..N) { int p = ord[i]; foreach (j; i + 1..N) { int q = ord[j]; if (H[q] <= H[p]) continue; bool deletable () { long K2 = 1L * K * K; long d = (1L * X[p] - X[q]).pow(2) + (1L * Y[p] - Y[q]).pow(2); return d <= K2; } if (deletable()) { ans--; break; } } } writeln(ans); } void read (T...) (string S, ref T args) { import std.conv : to; import std.array : split; auto buf = S.split; foreach (i, ref arg; args) { arg = buf[i].to!(typeof(arg)); } }