# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
47819 | jun6873 | Luxury burrow (IZhO13_burrow) | C++11 | 435 ms | 50640 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
typedef pair<int, int> pint;
#define x first
#define y second
int h, w, k, a[1004][1004], c[1004];
int f(int k) {
int ans = 0;
memset(c, 0, sizeof(c));
for (int i=1; i<=h; i++) {
for (int j=1; j<=w; j++) {
if (a[i][j] >= k) c[j]++;
else c[j] = 0;
}
stack<pint> st;
for (int j=1; j<=w+1; j++) {
int k = j;
while (!st.empty() and st.top().x > c[j]) {
ans = max(ans, st.top().x * (j - st.top().y));
k = st.top().y;
st.pop();
}
st.emplace(c[j], k);
}
}
return ans;
}
int main() {
ios_base::sync_with_stdio(0); cin.tie(0);
cin >> h >> w >> k;
for (int i=1; i<=h; i++) for (int j=1; j<=w; j++) cin >> a[i][j];
int l = 0, r = 1e9 + 2;
while (l+1<r) {
int m = (l+r)/2;
if (f(m) >= k) l = m;
else r = m;
}
cout << l << ' ' << f(l) << '\n';
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |