// #pragma GCC target("avx2")
#pragma GCC optimize("O3", "unroll-loops")
// #include <bits/extc++.h>
// using namespace __gnu_pbds;
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define double long double
// template <typename T>
// using pbds_set = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>;
using pii = pair<int, int>;
template<typename T>
using prior = priority_queue<T, vector<T>, greater<T>>;
template<typename T>
using Prior = priority_queue<T>;
#define X first
#define Y second
#define ALL(x) (x).begin(), (x).end()
#define eb emplace_back
#define pb push_back
#define fastIO() ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0)
#define RANDOM() random_device __rd; \
mt19937 __gen = mt19937(__rd()); \
uniform_int_distribution<int> __dis(0, 1); \
auto rnd = bind(__dis, __gen);
const int INF = 1E9;
const int mod = 1E9 + 7;
int32_t main() {
fastIO();
int h, w;
cin >> h >> w;
int _max = 0;
vector<vector<int>> v(h, vector<int>(w));
for (auto &x : v) for (auto &y : x) cin >> y, _max = max(_max, y);
int lo = 0, hi = INF, mi, inMin, inMax;
vector<int> heiL, heiR;
while (lo < hi) {
mi = lo + hi >> 1;
heiL.clear(), heiR.clear();
for (auto vec : v) {
for (int i = 0; i < w; ++i) {
if (vec[i] < _max - mi) {heiL.eb(i); break;}
if (i == w-1) heiL.eb(w);
}
for (int i = w-1; i >= 0; --i) {
if (vec[i] < _max - mi) {heiR.eb(i+1); break;}
if (i == 0) heiR.eb(0);
}
}
for (int i = 1; i < h; ++i) heiL[i] = min(heiL[i-1], heiL[i]);
for (int i = 1; i < h; ++i) heiR[i] = max(heiR[i-1], heiR[i]);
inMin = INF, inMax = 0;
for (int i = 0; i < h; ++i) {
for (int j = heiL[i]; j < w; ++j) inMax = max(inMax, v[i][j]), inMin = min(inMin, v[i][j]);
}
if (inMax - inMin <= mi) {hi = mi; continue;}
inMin = INF, inMax = 0;
for (int i = 0; i < h; ++i) {
for (int j = 0; j < heiR[i]; ++j) inMax = max(inMax, v[i][j]), inMin = min(inMin, v[i][j]);
}
if (inMax - inMin <= mi) {hi = mi; continue;}
heiL.clear(), heiR.clear();
for (auto vec : v) {
for (int i = 0; i < w; ++i) {
if (vec[i] < _max - mi) {heiL.eb(i); break;}
if (i == w-1) heiL.eb(w);
}
for (int i = w-1; i >= 0; --i) {
if (vec[i] < _max - mi) {heiR.eb(i+1); break;}
if (i == 0) heiR.eb(0);
}
}
for (int i = h-2; i >= 0; --i) heiL[i] = min(heiL[i+1], heiL[i]);
for (int i = h-2; i >= 0; --i) heiR[i] = max(heiR[i+1], heiR[i]);
inMin = INF, inMax = 0;
for (int i = 0; i < h; ++i) {
for (int j = heiL[i]; j < w; ++j) inMax = max(inMax, v[i][j]), inMin = min(inMin, v[i][j]);
}
if (inMax - inMin <= mi) {hi = mi; continue;}
inMin = INF, inMax = 0;
for (int i = 0; i < h; ++i) {
for (int j = 0; j < heiR[i]; ++j) inMax = max(inMax, v[i][j]), inMin = min(inMin, v[i][j]);
}
if (inMax - inMin <= mi) {hi = mi; continue;}
lo = mi + 1;
}
cout << lo << "\n";
return 0;
}
Compilation message
joioi.cpp: In function 'int32_t main()':
joioi.cpp:48:17: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
mi = lo + hi >> 1;
~~~^~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
5 ms |
384 KB |
Output is correct |
2 |
Correct |
5 ms |
384 KB |
Output is correct |
3 |
Correct |
5 ms |
384 KB |
Output is correct |
4 |
Correct |
5 ms |
384 KB |
Output is correct |
5 |
Correct |
5 ms |
384 KB |
Output is correct |
6 |
Correct |
5 ms |
384 KB |
Output is correct |
7 |
Correct |
5 ms |
384 KB |
Output is correct |
8 |
Correct |
5 ms |
384 KB |
Output is correct |
9 |
Correct |
5 ms |
384 KB |
Output is correct |
10 |
Correct |
5 ms |
384 KB |
Output is correct |
11 |
Correct |
4 ms |
384 KB |
Output is correct |
12 |
Correct |
5 ms |
384 KB |
Output is correct |
13 |
Correct |
5 ms |
256 KB |
Output is correct |
14 |
Correct |
5 ms |
384 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
5 ms |
384 KB |
Output is correct |
2 |
Correct |
5 ms |
384 KB |
Output is correct |
3 |
Correct |
5 ms |
384 KB |
Output is correct |
4 |
Correct |
5 ms |
384 KB |
Output is correct |
5 |
Correct |
5 ms |
384 KB |
Output is correct |
6 |
Correct |
5 ms |
384 KB |
Output is correct |
7 |
Correct |
5 ms |
384 KB |
Output is correct |
8 |
Correct |
5 ms |
384 KB |
Output is correct |
9 |
Correct |
5 ms |
384 KB |
Output is correct |
10 |
Correct |
5 ms |
384 KB |
Output is correct |
11 |
Correct |
4 ms |
384 KB |
Output is correct |
12 |
Correct |
5 ms |
384 KB |
Output is correct |
13 |
Correct |
5 ms |
256 KB |
Output is correct |
14 |
Correct |
5 ms |
384 KB |
Output is correct |
15 |
Correct |
5 ms |
384 KB |
Output is correct |
16 |
Correct |
10 ms |
640 KB |
Output is correct |
17 |
Correct |
14 ms |
1024 KB |
Output is correct |
18 |
Correct |
16 ms |
948 KB |
Output is correct |
19 |
Correct |
14 ms |
952 KB |
Output is correct |
20 |
Correct |
13 ms |
896 KB |
Output is correct |
21 |
Correct |
18 ms |
1024 KB |
Output is correct |
22 |
Correct |
16 ms |
1024 KB |
Output is correct |
23 |
Correct |
18 ms |
1024 KB |
Output is correct |
24 |
Correct |
16 ms |
1024 KB |
Output is correct |
25 |
Correct |
19 ms |
1024 KB |
Output is correct |
26 |
Correct |
18 ms |
1152 KB |
Output is correct |
27 |
Correct |
21 ms |
1024 KB |
Output is correct |
28 |
Correct |
19 ms |
1024 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
5 ms |
384 KB |
Output is correct |
2 |
Correct |
5 ms |
384 KB |
Output is correct |
3 |
Correct |
5 ms |
384 KB |
Output is correct |
4 |
Correct |
5 ms |
384 KB |
Output is correct |
5 |
Correct |
5 ms |
384 KB |
Output is correct |
6 |
Correct |
5 ms |
384 KB |
Output is correct |
7 |
Correct |
5 ms |
384 KB |
Output is correct |
8 |
Correct |
5 ms |
384 KB |
Output is correct |
9 |
Correct |
5 ms |
384 KB |
Output is correct |
10 |
Correct |
5 ms |
384 KB |
Output is correct |
11 |
Correct |
4 ms |
384 KB |
Output is correct |
12 |
Correct |
5 ms |
384 KB |
Output is correct |
13 |
Correct |
5 ms |
256 KB |
Output is correct |
14 |
Correct |
5 ms |
384 KB |
Output is correct |
15 |
Correct |
5 ms |
384 KB |
Output is correct |
16 |
Correct |
10 ms |
640 KB |
Output is correct |
17 |
Correct |
14 ms |
1024 KB |
Output is correct |
18 |
Correct |
16 ms |
948 KB |
Output is correct |
19 |
Correct |
14 ms |
952 KB |
Output is correct |
20 |
Correct |
13 ms |
896 KB |
Output is correct |
21 |
Correct |
18 ms |
1024 KB |
Output is correct |
22 |
Correct |
16 ms |
1024 KB |
Output is correct |
23 |
Correct |
18 ms |
1024 KB |
Output is correct |
24 |
Correct |
16 ms |
1024 KB |
Output is correct |
25 |
Correct |
19 ms |
1024 KB |
Output is correct |
26 |
Correct |
18 ms |
1152 KB |
Output is correct |
27 |
Correct |
21 ms |
1024 KB |
Output is correct |
28 |
Correct |
19 ms |
1024 KB |
Output is correct |
29 |
Correct |
921 ms |
52344 KB |
Output is correct |
30 |
Correct |
745 ms |
51064 KB |
Output is correct |
31 |
Correct |
806 ms |
54904 KB |
Output is correct |
32 |
Correct |
922 ms |
55032 KB |
Output is correct |
33 |
Correct |
789 ms |
47864 KB |
Output is correct |
34 |
Correct |
830 ms |
55160 KB |
Output is correct |
35 |
Correct |
1110 ms |
70524 KB |
Output is correct |
36 |
Correct |
1093 ms |
40440 KB |
Output is correct |
37 |
Correct |
1028 ms |
70776 KB |
Output is correct |