| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 171102 | ZwariowanyMarcin | 구경하기 (JOI13_watching) | C++14 | 95 ms | 8696 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define fi first
#define se second
#define mp make_pair
#define ss(x) (int) x.size()
#define pb push_back
#define ll long long
#define cat(x) cerr << #x << " = " << x << endl
#define FOR(i, n) for(int i = 0; i < n; ++i)
using namespace std;
const int nax = 2005;
int n;
int p, q;
int a[nax];
int dp[nax][nax];
int go[nax][2];
bool ok(int x) {
if(n <= p + q) return 1;
for(int i = 1; i <= n; ++i) {
go[i][0] = upper_bound(a + 1, a + n + 1, a[i] + x - 1) - a - 1;
go[i][1] = upper_bound(a + 1, a + n + 1, a[i] + x + x - 1) - a - 1;
}
for(int i = 0; i <= p; ++i)
for(int j = 0; j <= q; ++j)
dp[i][j] = 0;
dp[0][0] = 0;
for(int i = 0; i <= p; ++i)
for(int j = 0; j <= q; ++j) {
if(dp[i][j] == n) return 1;
dp[i + 1][j] = max(dp[i + 1][j], go[dp[i][j] + 1][0]);
dp[i][j + 1] = max(dp[i][j + 1], go[dp[i][j] + 1][1]);
}
return 0;
}
int main() {
scanf("%d %d %d", &n, &p, &q);
for(int i = 1; i <= n; ++i)
scanf("%d", a + i);
sort(a + 1, a + n + 1);
int l = 1;
int r = 1000000001;
while(l < r) {
int m = (l + r) / 2;
if(ok(m))
r = m;
else
l = m + 1;
}
printf("%d", l);
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
