Skip to content

Instantly share code, notes, and snippets.

@kartikkukreja
Last active October 22, 2016 03:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kartikkukreja/32dbe74164104810a3f164b21328693f to your computer and use it in GitHub Desktop.
Save kartikkukreja/32dbe74164104810a3f164b21328693f to your computer and use it in GitHub Desktop.
Largest rectangle in a histogram solution
int largestRectangleArea(vector<int> &A) {
int n = A.size();
vector<int> posRight(n);
stack<int> S;
for (int i = n-1; i >= 0; i--) {
while (!S.empty() && A[S.top()] >= A[i])
S.pop();
posRight[i] = S.empty() ? n-1 : S.top() - 1;
S.push(i);
}
while (!S.empty()) S.pop();
int maxArea = 0;
for (int i = 0; i < n; i++) {
while (!S.empty() && A[S.top()] >= A[i])
S.pop();
long long area = A[i] * (posRight[i] + 1 - (S.empty() ? 0 : S.top() + 1));
if (area > maxArea)
maxArea = area;
S.push(i);
}
return maxArea;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment