#include using namespace atcoder; using mint = modint998244353; const long long MOD = 998244353; // using mint = modint1000000007; // const long long MOD = 1000000007; // using mint = modint;//mint::set_mod(MOD); #include #define rep(i, a, b) for (ll i = (ll)(a); i < (ll)(b); i++) #define repeq(i, a, b) for (ll i = (ll)(a); i <= (ll)(b); i++) #define repreq(i, a, b) for (ll i = (ll)(a); i >= (ll)(b); i--) #define endl '\n' // fflush(stdout); #define cYes cout << "Yes" << endl #define cNo cout << "No" << endl #define sortr(v) sort(v, greater<>()) #define pb push_back #define pob pop_back #define mp make_pair #define mt make_tuple #define FI first #define SE second #define ALL(v) (v).begin(), (v).end() #define INFLL 3000000000000000100LL #define INF 1000000100 #define PI acos(-1.0L) #define TAU (PI * 2.0L) using namespace std; typedef long long ll; typedef pair Pll; typedef tuple Tlll; typedef vector Vi; typedef vector VVi; typedef vector Vl; typedef vector VVl; typedef vector VVVl; typedef vector VTlll; typedef vector Vm; typedef vector VVm; typedef vector Vs; typedef vector Vd; typedef vector Vc; typedef vector Vb; typedef vector VPll; typedef priority_queue PQl; typedef priority_queue, greater> PQlr; /* inout */ ostream &operator<<(ostream &os, mint const &m) { os << m.val(); return os; } istream &operator>>(istream &is, mint &m) { long long n; is >> n, m = n; return is; } template ostream &operator<<(ostream &os, const vector &v) { int n = v.size(); rep(i, 0, n) { os << v[i] << " \n"[i == n - 1]; } return os; } template ostream &operator<<(ostream &os, const vector> &v) { int n = v.size(); rep(i, 0, n) os << v[i]; return os; } template ostream &operator<<(ostream &os, pair const &p) { os << p.first << ' ' << p.second; return os; } template ostream &operator<<(ostream &os, const map &mp) { for (auto &[key, val] : mp) { os << key << ':' << val << '\n'; } return os; } template ostream &operator<<(ostream &os, const set &st) { auto itr = st.begin(); for (int i = 0; i < (int)st.size(); i++) { os << *itr << (i + 1 != (int)st.size() ? ' ' : '\n'); itr++; } return os; } template ostream &operator<<(ostream &os, multiset &st) { auto itr = st.begin(); for (int i = 0; i < (int)st.size(); i++) { os << *itr << (i + 1 != (int)st.size() ? ' ' : '\n'); itr++; } return os; } template ostream &operator<<(ostream &os, queue q) { while (q.size()) { os << q.front(); q.pop(); os << " \n"[q.empty()]; } return os; } template ostream &operator<<(ostream &os, stack st) { vector v; while (st.size()) { v.push_back(st.top()); st.pop(); } reverse(ALL(v)); os << v; return os; } template ostream &operator<<(ostream &os, priority_queue pq) { vector v; while (pq.size()) { v.push_back(pq.top()); pq.pop(); } os << v; return os; } template istream &operator>>(istream &is, vector &v) { for (T &in : v) is >> in; return is; } template istream &operator>>(istream &is, pair &p) { is >> p.first >> p.second; return is; } /* useful */ template int SMALLER(vector &a, T x) { return lower_bound(a.begin(), a.end(), x) - a.begin(); } template int orSMALLER(vector &a, T x) { return upper_bound(a.begin(), a.end(), x) - a.begin(); } template int BIGGER(vector &a, T x) { return a.size() - orSMALLER(a, x); } template int orBIGGER(vector &a, T x) { return a.size() - SMALLER(a, x); } template int COUNT(vector &a, T x) { return upper_bound(ALL(a), x) - lower_bound(ALL(a), x); } template bool chmax(T &a, S b) { if (a < b) { a = b; return 1; } return 0; } template bool chmin(T &a, S b) { if (a > b) { a = b; return 1; } return 0; } template void press(T &v) { v.erase(unique(ALL(v)), v.end()); } template vector zip(vector b) { pair p[b.size() + 10]; int a = b.size(); vector l(a); for (int i = 0; i < a; i++) p[i] = mp(b[i], i); sort(p, p + a); int w = 0; for (int i = 0; i < a; i++) { if (i && p[i].first != p[i - 1].first) w++; l[p[i].second] = w; } return l; } template vector vis(vector &v) { vector S(v.size() + 1); rep(i, 1, S.size()) S[i] += v[i - 1] + S[i - 1]; return S; } ll dem(ll a, ll b) { return ((a + b - 1) / (b)); } ll dtoll(double d, int g) { return round(d * pow(10, g)); } string tobin(ll n, ll d) { string ret; rep(i, 0, d) { ret += (n % 2) ? '1' : '0'; n /= 2; } reverse(ALL(ret)); return ret; } const double EPS = 1e-10; void init() { cin.tie(0); cout.tie(0); ios::sync_with_stdio(0); cout << fixed << setprecision(12); } // do {} while (next_permutation(ALL(vec))); /********************************** START **********************************/ void sol(); int main() { init(); int q = 1; // cin >> q; while (q--) sol(); return 0; } /********************************** SOLVE **********************************/ void sol() { ll n, a, b; cin >> n >> a >> b; Vl x(n), y(n), k(n); rep(i, 0, n) cin >> x[i] >> y[i] >> k[i]; set se; se.insert(Vi(n, 0)); auto f = [&](Vi a) { Vi ind; rep(i, 0, a.size()) if (a[i] == 0) ind.pb(i); int m = ind.size(); rep(i, 0, 1 << m) { Vi v = a; rep(j, 0, m) { if (i & (1 << j)) v[ind[j]] = 1; } se.insert(v); } }; rep(i, 0, n) { Vi v(n); v[i] = 3; se.insert(v); rep(j, 0, n) { if (i == j) continue; v[j] = 2; se.insert(v); f(v); v[j] = 0; } } map ma; map mar; int ct = 0; for (auto p : se) { ma[p] = ct; mar[ct] = p; ct++; } auto caldistS = [&](int i, int j) { ll dx = x[i] - x[j]; ll dy = y[i] - y[j]; return abs(dx) + abs(dy); }; auto distS = [&](int i, int j, int k) { return caldistS(i, j) + caldistS(i, k) >= a; }; auto distK = [&](int i, int j) { return abs(k[i] - k[j]) >= b; }; dsu uf(ct); rep(i, 0, ct) { Vi nw = mar[i]; int pre = 0; rep(j, 0, nw.size()) if (nw[j]) pre++; if (pre == 0) { Vi nw(n); rep(j, 0, n) { nw[j] = 3; uf.merge(0, ma[nw]); nw[j] = 0; } continue; } if (ct == 1) { int s; rep(j, 0, n) if (nw[j] == 3) { nw[j] = 2; s = j; } rep(j, 0, n) { if (nw[j]) continue; nw[j] = 3; if (caldistS(s, j) >= a || distK(s, j)) uf.merge(0, ma[nw]); nw[j] = 0; } continue; } int s, t; rep(j, 0, n) { if (nw[j] == 3) { nw[j]--; s = j; } else if (nw[j] == 2) { nw[j]--; t = j; } } rep(j, 0, n) { if (nw[j] == 0) { nw[j] = 3; if (distS(t, s, j) || distK(s, j)) uf.merge(i, ma[nw]); nw[j] = 0; } } } ll ans = 0; rep(i, 0, ct) { if (uf.same(0, i)) { Vi nw = mar[i]; int pre = 0; rep(j, 0, nw.size()) if (nw[j]) pre++; chmax(ans, pre); } } cout << ans << endl; }