# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
340464 | beksultan04 | Luxury burrow (IZhO13_burrow) | C++14 | 956 ms | 27988 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;
//#define int long long
#define pii pair<int,int>
#define OK puts("OK");
#define NO puts("NO");
#define YES puts("YES");
#define fr first
#define sc second
#define ret return
#define scan1(a) scanf("%d",&a);
#define scan2(a,b) scanf("%d %d",&a, &b);
#define scan3(a,b,c) scanf("%d %d %d",&a,&b,&c);
#define all(s) s.begin(),s.end()
#define allr(s) s.rbegin(),s.rend()
#define pb push_back
#define sz(v) (int)v.size()
#define endi puts("");
#define eps 1e-12
const int N = 1e5+12,INF=1e9+7;
int q[2001][2001],l[2001][2001],a[2001][2001],n,m;
int le[N],re[N];
int fun(){
int ans=0,i,j;
for (i=1;i<=n;++i){
for (j=1;j<=m;++j){
if (q[i][j] == 1){
l[i][j] = l[i-1][j]+1;
}
else
l[i][j]=0;
}
}
for (i=1;i<=n;++i){
vector <pii> v;
v.pb({0,0});
for (j=1;j<=m;++j){
if (l[i][j] == 0){
v.clear();
v.pb({0,j});
}
else {
while (!v.empty() && l[i][j] <= v.back().fr)
v.pop_back();
le[j]=v.back().sc;
v.pb({l[i][j],j});
}
}v.clear();
v.pb({0,m+1});
for (j=m;j>=1;j--){
if (l[i][j] == 0){
v.clear();
v.pb({0,j});
}
else {
while (!v.empty() && l[i][j] <= v.back().fr)
v.pop_back();
re[j]=v.back().sc;
v.pb({l[i][j],j});
}
}
for(j=1;j<=m;j++)
ans=max(ans,(re[j]-le[j]-1)*l[i][j]);
}
ret ans;
}
void full(int x){
int i,j;
for (i=1;i<=n;++i){
for (j=1;j<=m;++j){
if (a[i][j] >= x){
q[i][j]=1;
}
else q[i][j]=0;
l[i][j]=0;
}
}
}
main(){
int i,j,k;
scan3(n,m,k)
vector<int>comp;
for (i=1;i<=n;++i){
for (j=1;j<=m;++j){
scan1(a[i][j])
comp.pb(a[i][j]);
}
}
sort(all(comp));
comp.erase(unique(all(comp)),comp.end());
int l=0,r=int(comp.size())-1;
while (r-l>1){
int m = l+r>>1;
full(comp[m]);
int x = fun();
if (x >= k){
l=m;
}
else {
r=m;
}
}
full(comp[r]);
int x = fun();
if (x >= k)l=r;
full(comp[l]);
x = fun();
cout <<comp[l]<<" "<<x;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |