#include typedef long long ll; typedef unsigned long long ull; #define FOR(i,a,b) for(int (i)=(a);i<(b);i++) #define REP(i,n) FOR(i,0,n) #define RANGE(vec) (vec).begin(),(vec).end() using namespace std; pair operator+(const pair &a, const pair &b) { return make_pair(a.first+b.first, a.second+b.second); } pair operator-(const pair &a, const pair &b) { return make_pair(a.first-b.first, a.second-b.second); } class SurroundWithSquare { public: void dump(const pair &a) { cerr<>N>>B; // 座標圧縮を使う vector xs; vector ys; vector> ps; REP(i,N) { ll x,y,p; cin>>x>>y>>p; ps.emplace_back(x,y,p); xs.push_back(x); ys.push_back(y); } sort(RANGE(xs)); sort(RANGE(ys)); map xmap; map ymap; REP(i,N) { xmap.emplace(xs[i],xmap.size()); ymap.emplace(ys[i],ymap.size()); } const int maxX = xmap.size(); const int maxY = ymap.size(); // 0<=x,y<400 pair field[maxY][maxX]; REP(y,maxY) REP(x,maxX) field[y][x] = make_pair(0,0); REP(i,N) { ll x,y,p; tie(x,y,p) = ps[i]; field[ymap[y]][xmap[x]] = make_pair(p,1); } pair Sum[maxY][maxX]; REP(i,maxY) REP(j,maxX) Sum[i][j] = make_pair(0,0); REP(y,maxY) REP(x,maxX) { Sum[y][x] = field[y][x]; if (x > 0) Sum[y][x] = Sum[y][x] + Sum[y][x-1]; } REP(y,maxY) REP(x,maxX) { if (y > 0) Sum[y][x] = Sum[y][x] + Sum[y-1][x]; } //REP(y,maxY) { REP(x,maxX) cerr< cnt(0,0); pair lb,rb,lt,rt; lb = rb = lt = rt = make_pair(0,0); rt = Sum[uy][ux]; if (ly > 0) rb = Sum[ly-1][ux]; if (lx > 0) lt = Sum[uy][lx-1]; if (lx > 0 && ly > 0) lb = Sum[ly-1][lx-1]; cnt = rt - lt - rb + lb; if (cnt.first <= B) maxN = max(maxN, cnt.second); } cout<solve(); delete obj; return 0; } #endif