# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
480717 | Mackerel_Pike | The Kingdom of JOIOI (JOI17_joioi) | C++14 | 628 ms | 54936 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int maxn = 2005;
int n, m, mn, mx;
int a[maxn][maxn];
int l[maxn], r[maxn];
inline bool solve(int md){
for(int i = 0; i < n; ++i){
for(r[i] = -1; r[i] + 1 < m && a[i][r[i] + 1] >= mx - md; ++r[i]);
for(l[i] = m; l[i] - 1 >= 0 && a[i][l[i] - 1] <= mn + md; --l[i]);
--l[i];
if(l[i] > r[i])
return false;
}
int lst = -1; bool ok = true;
for(int i = 0; i < n; ++i){
lst = max(lst, l[i]);
ok &= (lst <= r[i]);
}
if(ok)
return true;
lst = m;
for(int i = 0; i < n; ++i){
lst = min(lst, r[i]);
if(lst < l[i])
return false;
컴파일 시 표준 에러 (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... |