Advertisement
yeskendir_sultanov

Фермер

Mar 19th, 2025
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 2.06 KB | Source Code | 0 0
  1. #include <bits/stdc++.h>
  2. #define ll long long
  3.  
  4. using namespace std;
  5.  
  6. ll maxArea(vector<int> &h) {
  7.     int n = h.size();
  8.     stack<int> st;
  9.     int L[n], R[n];
  10.    
  11.     for (int i = 0; i < n; ++i) {
  12.         while (!st.empty() && h[st.top()] >= h[i]) {
  13.             st.pop();
  14.         }
  15.        
  16.         if (st.empty()) {
  17.             L[i] = 0;
  18.         } else {
  19.             L[i] = st.top() + 1;
  20.         }
  21.        
  22.         st.push(i);
  23.     }
  24.    
  25.     while (!st.empty()) {
  26.         st.pop();
  27.     }
  28.    
  29.     for (int i = n - 1; i >= 0; --i) {
  30.         while (!st.empty() && h[st.top()] >= h[i]) {
  31.             st.pop();
  32.         }
  33.        
  34.         if (st.empty()) {
  35.             R[i] = n - 1;
  36.         } else {
  37.             R[i] = st.top() - 1;
  38.         }
  39.        
  40.         st.push(i);
  41.     }
  42.    
  43.     ll ans = 0;
  44.    
  45.     for (int i = 0; i < n; ++i) {
  46.         ans = max(ans, h[i] * (R[i] - L[i] + 1ll));
  47.     }
  48.    
  49.     return ans;
  50. }
  51.  
  52.  
  53. int main() {
  54.     ios_base::sync_with_stdio(NULL);
  55.     cin.tie(0); cout.tie(0);
  56.    
  57.     int n, m;
  58.     cin >> n >> m;
  59.     int a[n][m];
  60.     for (int i = 0; i < n; ++i) {
  61.         string s;
  62.         cin >> s;
  63.         for (int j = 0; j < m; ++j) {
  64.             a[i][j] = (s[j] - '0');
  65.         }
  66.     }
  67.    
  68.     vector<vector<int>> dp(n, vector<int> (m, 0));
  69.    
  70.     for (int j = 0; j < m; ++j) {
  71.         dp[0][j] = a[0][j];
  72.     }
  73.    
  74.     for (int i = 1; i < n; ++i) {
  75.         for (int j = 0; j < m; ++j) {
  76.             dp[i][j] = (dp[i - 1][j] * a[i][j] + a[i][j]);
  77.         }
  78.     }
  79.    
  80.     ll ans = 0;
  81.    
  82.     for (int i = 0; i < n; ++i) {
  83.         ans = max(ans, maxArea(dp[i]));
  84.     }
  85.    
  86.     cout << ans;
  87.    
  88.     return 0;
  89. }
  90.  
  91. /*
  92. dp[i][j] = сколько единиц подряд вверх начиная с i,j позиции
  93.  
  94. a
  95. 1 0 1 1 0 1 1 1 1 1
  96. 0 1 1 1 1 1 1 1 1 0
  97. 1 1 1 1 1 1 1 1 1 1
  98. 1 0 1 1 1 1 1 1 1 1
  99. 1 1 0 1 1 1 0 1 1 1
  100.  
  101. dp[i][j] = (dp[i-1][j] * a[i][j] + a[i][j]);
  102. 1 0 1 1 0 1 1 1 1 1
  103. 0 1 2 2 1 2 2 2 2 0
  104. 1 2 3 3 2 3 3 3 3 1
  105. 2 0 4 4 3 4 4 4 4 2
  106. 3 1 0 5 4 5 0 5 5 3
  107. */
  108.  
  109.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement