# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
49778 | mra2322001 | Luxury burrow (IZhO13_burrow) | C++14 | 1141 ms | 62528 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>
#define f0(i, n) for(int i(0); i<(n); i++)
#define f1(i, n) for(int i(1); i<=(n); i++)
using namespace std;
typedef long long ll;
const int N = 1002;
int m, n, a[N][N], d[N][N], b[N], l[N], r[N], arr[N][N], k;
vector <int> save;
int check(int x){
f1(i, m) f1(j, n){
d[i][j] = 0;
if(arr[i][j] >= x) a[i][j] = 1;
else a[i][j] = 0;
}
f1(i, m){
for(int j = n; j>= 1; j--){
if(!a[i][j]) d[i][j] = 0;
else{
d[i][j] = d[i][j + 1] + 1;
}
}
}
int res = 0;
f1(j, n){
f1(i, m) b[i] = d[i][j], l[i] = r[i] = 0;
stack <int> s;
f1(i, m){
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |