Submission #340772

#TimeUsernameProblemLanguageResultExecution timeMemory
340772talant117408Luxury burrow (IZhO13_burrow)C++17
100 / 100
1705 ms22636 KiB
/* Code written by Talant I.D. */ #include <bits/stdc++.h> using namespace std; typedef long long ll; typedef pair <int, int> pii; typedef pair <ll, ll> pll; #define precision(n) fixed << setprecision(n) #define pb push_back #define ub upper_bound #define lb lower_bound #define mp make_pair #define eps (double)1e-9 #define PI 2*acos(0.0) #define endl "\n" #define sz(v) int((v).size()) #define all(v) v.begin(),v.end() #define rall(v) v.rbegin(),v.rend() #define do_not_disturb ios::sync_with_stdio(0);cin.tie(0);cout.tie(0); #define OK cout << "OK" << endl; inline bool isvowel(char ch){ ch = tolower(ch); return (ch == 'a' || ch == 'e' || ch == 'i' || ch == 'o' || ch == 'u'); } inline bool isprime(int n){ if(n < 2 || (n%2 == 0 && n != 2)) return false; for(int i = 3; i*i <= n; i++) if(n%i == 0) return false; return true; } class Union{ private: vector <int> saizu, link; public: Union(int n){ saizu.assign(n, 1); link.resize(n); iota(all(link), 0); } int find(int n){ if(link[n] == n) return n; return link[n] = find(link[n]); } int same(int a, int b){ return find(a) == find(b); } void unite(int a, int b){ if(same(a, b)) return; a = find(a); b = find(b); if(saizu[a] < saizu[b]) swap(a, b); saizu[a] += saizu[b]; link[b] = a; } int getsize(int a){ return saizu[find(a)]; } }; const int mod = 1e9+7; ll mode(ll a){ a %= mod; if(a < 0) a += mod; return a; } ll subt(ll a, ll b){ return mode(mode(a)-mode(b)); } ll add(ll a, ll b){ return mode(mode(a)+mode(b)); } ll mult(ll a, ll b){ return mode(mode(a)*mode(b)); } ll binpow(ll a, ll b){ ll res = 1; while(b){ if(b&1) res = mult(res, a); a = mult(a, a); b >>= 1; } return res; } int n, m, acc; int grid[1003][1003], grid2[1003][1003], up[1003][1003], lf[1003][1003]; int check(int mid){ for(int i = 1; i <= n; i++){ for(int j = 1; j <= m; j++){ if(grid[i][j] >= mid){ grid2[i][j] = 1; } else{ grid2[i][j] = 0; } } } for(int j = 1; j <= m; j++){ for(int i = 1; i <= n; i++){ if(!grid2[i][j]) up[i][j] = 0; else up[i][j] = up[i-1][j]+1; } } int mx = 0; for(int i = 1; i <= n; i++){ for(int j = 1; j <= m; j++){ if(!grid2[i][j]) continue; stack <pii> st; int l = j, r = j+1; while(r <= m && grid2[i][r]) r++; r--; for(int k = l; k <= r; k++){ int pos = k; while(sz(st) && st.top().first >= up[i][k]){ pos = st.top().second; st.pop(); } lf[i][k] = k-pos+1; st.push(mp(up[i][k], pos)); } while(sz(st)) st.pop(); for(int k = r; k >= l; k--){ int pos = k; while(sz(st) && st.top().first >= up[i][k]){ pos = st.top().second; st.pop(); } mx = max(mx, (pos-k+lf[i][k])*up[i][k]); st.push(mp(up[i][k], pos)); } j = r; } } return mx; } int main(){ do_not_disturb cin >> n >> m >> acc; int mx = 0, mn = 2e9; for(int i = 1; i <= n; i++){ for(int j = 1; j <= m; j++){ cin >> grid[i][j]; mx = max(mx, grid[i][j]); mn = min(mn, grid[i][j]); } } int ans = 0, area = 0; int l = mn, r = mx; while(l <= r){ int mid = (l+r) >> 1; int a = check(mid); if(a >= acc){ l = 1+ mid; if(ans < mid){ ans = mid; area = a; } } else{ r = mid-1; } } cout << ans << ' ' << area; return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...