# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
25402 | 2017-06-22T04:37:20 Z | 시제연(#1067) | 구경하기 (JOI13_watching) | C++ | 293 ms | 19268 KB |
#include <bits/stdc++.h> using namespace std; int dyn[2100][2100]; int prev[2][2100]; int n, p, q; int arr[2100]; bool ok(int w) { int i, j; for (i=1;i<=n;i++) { prev[0][i] = upper_bound(arr,arr+i,arr[i]-w)-arr-1; prev[1][i] = upper_bound(arr,arr+i,arr[i]-w*2)-arr-1; } for (i=1;i<=n;i++) { for (j=0;j<=n;j++) { dyn[i][j] = min(((j)?dyn[prev[1][i]][j-1]:987654321),dyn[prev[0][i]][j]+1); } } return dyn[n][min(q,n)]<=p; } int main() { int i; scanf("%d%d%d",&n,&p,&q); arr[0] = -(1e9+10); for (i=1;i<=n;i++) scanf("%d",&arr[i]); sort(arr,arr+n+1); int s = 0, e = 5e8+3; while(s<=e) { int m = (s+e)>>1; if (ok(m)) e = m-1; else s = m+1; } printf("%d\n",s); return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 19268 KB | Output is correct |
2 | Incorrect | 0 ms | 19268 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 293 ms | 19268 KB | Output is correct |
2 | Incorrect | 0 ms | 19268 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |