# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1096067 | thangdz2k7 | The Kingdom of JOIOI (JOI17_joioi) | C++17 | 817 ms | 70632 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
// 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;
if (!b[i][j]) return false;
}
}
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 = 0, 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("code.inp", "r")){
freopen("code.inp", "r", stdin);
freopen("code.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;
}
컴파일 시 표준 에러 (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... |