Advertisement
yeskendir_sultanov

Histogram

Mar 19th, 2025
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.41 KB | Source Code | 0 0
  1. #include <bits/stdc++.h>
  2.  
  3. using namespace std;
  4.  
  5. int main() {
  6.     int n;
  7.     cin >> n;
  8.     int h[n + 1];
  9.     for (int i = 1; i <= n; ++i) {
  10.         cin >> h[i];
  11.     }
  12.    
  13.     stack<int> st;
  14.     int L[n + 1], R[n + 1];
  15.    
  16.     for (int i = 1; i <= n; ++i) {
  17.         while (!st.empty() && h[st.top()] >= h[i]) {
  18.             st.pop();
  19.         }
  20.        
  21.         if (st.empty()) {
  22.             L[i] = 1;
  23.         } else {
  24.             L[i] = st.top() + 1;
  25.         }
  26.        
  27.         st.push(i);
  28.     }
  29.    
  30.     while (!st.empty()) {
  31.         st.pop();
  32.     }
  33.    
  34.     for (int i = n; i >= 1; --i) {
  35.         while (!st.empty() && h[st.top()] >= h[i]) {
  36.             st.pop();
  37.         }
  38.        
  39.         if (st.empty()) {
  40.             R[i] = n;
  41.         } else {
  42.             R[i] = st.top() - 1;
  43.         }
  44.        
  45.         st.push(i);
  46.     }
  47.    
  48.     long long ans = 0;
  49.    
  50.     for (int i = 1; i <= n; ++i) {
  51.         ans = max(ans, h[i] * (R[i] - L[i] + 1ll));
  52.     }
  53.    
  54.     cout << ans;
  55.     return 0;
  56. }
  57.  
  58. /*
  59. 10
  60. i       1 2  3 4 5 6 7 8 9  10
  61. h       2 1  3 4 5 4 7 3 1  7
  62. L       1 1  3 4 5 4 7 3 1  10
  63. R       1 10 8 7 5 7 7 8 10 10
  64.  
  65. long long ans = 0;
  66.  
  67. for (int i = 1; i <= n; ++i) {
  68.     ans = max(ans, h[i] * (R[i] - L[i] + 1));    
  69. }
  70.      
  71. i       1 2  3 4 5 6 7 8 9  10
  72. h       2 1  3 4 5 4 7 3 1  7
  73. L       1 1  3 4 5 4 7 3 1  10
  74. R       1 10 8 7 5 7 7 8 10 10
  75.  
  76. st = {2}
  77. */
  78.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement