# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1096060 | thangdz2k7 | The Kingdom of JOIOI (JOI17_joioi) | C++17 | 1 ms | 504 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.
// author : thembululquaUwU
// 3.9.2024
#include <bits/stdc++.h>
#define pb push_back
#define fi first
#define se second
#define endl '\n'
using namespace std;
using ll = long long;
using ii = pair <int, int>;
using vi = vector <int>;
const int N = 2e3 + 5;
const int mod = 1e9 + 7;
void maxl(auto &a, auto b) {a = max(a, b);}
void minl(auto &a, auto b) {a = min(a, b);}
int n, m, a[N][N], mn = mod, mx = 0, b[N][N];
bool check(int val){
for (int i = 0; i < n; ++ i){
for (int j = 0; j < m; ++ j){
b[i][j] = 0;
if (a[i][j] <= mn + val) b[i][j] |= 1;
if (a[i][j] >= mx - val) b[i][j] |= 2;
}
}
for (int t : {1, 2}){
int cur = m - 1; bool ck = true;
for (int i = 0; i < n; ++ i){
int fir = m, las = -1;
for (int j = 0; j < m; ++ j){
if (b[i][j] == t) las = j;
if (b[i][j] == (t ^ 3) && fir == m) fir = j;
}
minl(cur, fir - 1);
if (cur < las){
ck = false;
break;
}
}
if (ck) return true;
ck = true; cur = m - 1;
for (int i = n - 1; i >= 0; -- i){
int fir = m, las = -1;
for (int j = 0; j < m; ++ j){
if (b[i][j] == t) las = j;
if (b[i][j] == (t ^ 3) && fir == m) fir = j;
}
minl(cur, fir - 1);
if (cur < las){
ck = false;
break;
}
}
if (ck) return true;
}
return false;
}
void solve(){
cin >> n >> m;
for (int i = 0; i < n; ++ i){
for (int j = 0; j < m; ++ j){
cin >> a[i][j];
maxl(mx, a[i][j]); minl(mn, a[i][j]);
}
}
int lo = (mx - mn) >> 1;
int hi = mx - mn, ans = hi;
while (lo <= hi){
int mid = lo + hi >> 1;
if (check(mid)) ans = mid, hi = mid - 1;
else lo = mid + 1;
}
cout << ans;
}
int main(){
if (fopen("pqh.inp", "r")){
freopen("pqh.inp", "r", stdin);
freopen("pqh.out", "w", stdout);
}
ios_base::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
int t = 1; // cin >> t;
while (t --) solve();
return 0;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |