#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 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;
for (j=1;j<=m;++j){
if (l[i][j] == 0){
v.clear();
}
else {
int pos = j;
while (!v.empty() && l[i][j] <= v.back().fr){
pos = v.back().sc;
v.pop_back();
}
if (!v.empty()){
ans = max(ans,(j-v.back().sc+1)*v.back().fr);
}
v.pb({l[i][j],pos});
ans = max(ans,(j-pos+1)*l[i][j]);
}
}
}
for (i=1;i<=n;++i){
vector <pii> v;
for (j=m;j>0;--j){
if (l[i][j] == 0){
v.clear();
}
else {
int pos = j;
while (!v.empty() && l[i][j] <= v.back().fr){
pos = v.back().sc;
v.pop_back();
}
if (!v.empty()){
ans = max(ans,(v.back().sc-j+1)*v.back().fr);
}
v.pb({l[i][j],pos});
ans = max(ans,(pos-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)
for (i=1;i<=n;++i){
for (j=1;j<=m;++j){
scan1(a[i][j])
}
}
int l=1,r=INF;
while (r-l>1){
int m = l+r>>1;
full(m);
int x = fun();
if (x >= k){
l=m;
}
else {
r=m;
}
}
full(r);
int x = fun();
if (x >= k)l=r;
full(l);
x = fun();
cout <<l<<" "<<x;
}
Compilation message
burrow.cpp:92:6: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
92 | main(){
| ^
burrow.cpp: In function 'int main()':
burrow.cpp:103:18: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
103 | int m = l+r>>1;
| ~^~
burrow.cpp:13:27: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
13 | #define scan3(a,b,c) scanf("%d %d %d",&a,&b,&c);
| ~~~~~^~~~~~~~~~~~~~~~~~~~~
burrow.cpp:94:5: note: in expansion of macro 'scan3'
94 | scan3(n,m,k)
| ^~~~~
burrow.cpp:11:23: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
11 | #define scan1(a) scanf("%d",&a);
| ~~~~~^~~~~~~~~
burrow.cpp:98:13: note: in expansion of macro 'scan1'
98 | scan1(a[i][j])
| ^~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
364 KB |
Output is correct |
2 |
Correct |
1 ms |
364 KB |
Output is correct |
3 |
Correct |
1 ms |
492 KB |
Output is correct |
4 |
Correct |
1 ms |
620 KB |
Output is correct |
5 |
Correct |
2 ms |
748 KB |
Output is correct |
6 |
Correct |
1 ms |
876 KB |
Output is correct |
7 |
Correct |
1 ms |
364 KB |
Output is correct |
8 |
Incorrect |
6 ms |
1664 KB |
Output isn't correct |
9 |
Halted |
0 ms |
0 KB |
- |