# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
952798 | stakaman | Swimming competition (LMIO18_plaukimo_varzybos) | C++17 | 360 ms | 16212 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int N = 1000006;
int n, a, b;
int u[N];
int p[N];
bool dp[N];
bool solve(int x){
dp[0] = true;
p[0] = 1;
int j = 1;
for (int i = 1; i <= n; ++i) {
p[i] = p[i - 1];
dp[i] = false;
while ((u[i] - u[j] > x))
++j;
if (i - a < 0)
continue;
if (j - 1 <= i - b)
{
if (i - b - 1 < 0)
dp[i] = true;
else if (p[i - a] - p[i - b - 1] > 0)
dp[i] = true;
}
else
{
if (j - 1 <= i - a)
{
if (p[i - a] - p[j - 1 - 1] > 0)
dp[i] = true;
}
}
if (dp[i])
++p[i];
}
return dp[n];
}
int main(){
scanf("%d%d%d", &n, &a, &b);
for (int i = 1; i <= n; ++i)
scanf("%d", &u[i]);
sort(u + 1, u + n + 1);
int l = 0, r = N;
int ans;
while (l <= r) {
int m = (l + r) / 2;
if (solve(m)){
ans = m;
r = m - 1;
}
else
l = m + 1;
}
printf("%d\n", ans);
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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |