Submission #1016757

#TimeUsernameProblemLanguageResultExecution timeMemory
1016757vjudge13D Histogram (COCI20_histogram)C++17
20 / 110
2557 ms4648 KiB
#include<bits/stdc++.h>

using namespace std;

int main()
{
  int n;
  cin >> n;
  int a[n], b[n];
  for(int i = 0; i < n; i ++)
    cin >> a[i] >> b[i];

  long long ans = 0;
  for(int i = 0; i < n; i ++)
    {
      int mia = a[i], mib = b[i];
      for(int j = i; j < n; j ++)
	{
	  mia = min(a[j], mia);
	  mib = min(b[j], mib);
	  ans = max(ans, 1ll * mia * mib * (j - i + 1));
	}
    }
  cout << ans << endl;
  return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...