classSolution{public:vector<int>fallingSquares(vector<vector<int>>&positions){vector<int>ans;map<pair<int,int>,int>xsToHeight;// {{xStart, xEnd}, height}intmaxHeight=INT_MIN;for(constvector<int>&p:positions){constintleft=p[0];constintsideLength=p[1];constintright=left+sideLength;// First range intersect with [left, right)autoit=xsToHeight.upper_bound({left,right});if(it!=begin(xsToHeight)&&(--it)->first.second<=left)++it;intmaxHeightInRange=0;vector<tuple<int,int,int>>ranges;while(it!=end(xsToHeight)&&it->first.first<right){constintl=it->first.first;constintr=it->first.second;constinth=it->second;if(l<left)ranges.emplace_back(l,left,h);if(right<r)ranges.emplace_back(right,r,h);maxHeightInRange=max(maxHeightInRange,h);it=xsToHeight.erase(it);}constintnewHeight=maxHeightInRange+sideLength;xsToHeight[{left,right}]=newHeight;for(constauto&[l,r,h]:ranges)xsToHeight[{l,r}]=h;maxHeight=max(maxHeight,newHeight);ans.push_back(maxHeight);}returnans;}};