| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 490059 | Valera_Grinenko | Luxury burrow (IZhO13_burrow) | C++17 | 286 ms | 13852 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#pragma GCC optimize("Ofast")
#pragma GCC target("avx,avx2,fma")
#pragma GCC optimization ("unroll-loops")
#include <iostream>
#include <fstream>
#include <algorithm>
#include <vector>
#include <set>
#include <stack>
#include <map>
#include <unordered_map>
#include <iomanip>
#include <cmath>
#include <queue>
#include <bitset>
#include <numeric>
#include <array>
#include <cstring>
#include <random>
#include <chrono>
#define fi first
#define se second
#define pb push_back
#define mp make_pair
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
#define make_unique(x) sort(all((x))); (x).resize(unique(all((x))) - (x).begin())
typedef long long ll;
typedef long double ld;
using namespace std;
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
// #include <ext/pb_ds/assoc_container.hpp>
// #include <ext/pb_ds/tree_policy.hpp>
// using namespace __gnu_pbds;
// template<class T>
// using ordered_set = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>;
int main() {
ios::sync_with_stdio(0); cin.tie(0);
int n, m, k;
cin >> n >> m >> k;
vector<vector<int> > a(n, vector<int>(m));
for(auto& x : a)
for(auto& y : x)
cin >> y;
int l = 1, r = 1e9 + 42;
while(l < r) {
int mb = (l + r + 1) / 2;
vector<int> cur(m);
int mx = 0;
for(int i = 0; i < n; i++) {
for(int j = 0; j < m; j++) {
if(a[i][j] >= mb) cur[j]++;
else cur[j] = 0;
}
stack<int> st;
int top = 0, ar = 0;
int in = 0;
while(in < m) {
if(st.empty() || cur[st.top()] <= cur[in]) st.push(in++);
else {
top = cur[st.top()];
st.pop();
ar = top * in;
if(!st.empty()) ar = top * (in - st.top() - 1);
mx = max(mx, ar);
}
}
while(!st.empty()) {
top = cur[st.top()];
st.pop();
ar = top * in;
if(!st.empty()) ar = top * (in - st.top() - 1);
mx = max(mx, ar);
}
}
if(mx >= k) l = mb;
else r = mb - 1;
}
cout << l << ' ';
vector<int> cur(m);
int mx = 0;
for(int i = 0; i < n; i++) {
for(int j = 0; j < m; j++) {
if(a[i][j] >= l) cur[j]++;
else cur[j] = 0;
}
stack<int> st;
int top = 0, ar = 0;
int in = 0;
while(in < m) {
if(st.empty() || cur[st.top()] <= cur[in]) st.push(in++);
else {
top = cur[st.top()];
st.pop();
ar = top * in;
if(!st.empty()) ar = top * (in - st.top() - 1);
mx = max(mx, ar);
}
}
while(!st.empty()) {
top = cur[st.top()];
st.pop();
ar = top * in;
if(!st.empty()) ar = top * (in - st.top() - 1);
mx = max(mx, ar);
}
}
cout << mx << '\n';
return 0;
}
/*
*/
컴파일 시 표준 에러 (stderr) 메시지
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
