제출 #228360

#제출 시각아이디문제언어결과실행 시간메모리
228360Nayna구경하기 (JOI13_watching)C++14
50 / 100
1085 ms31744 KiB
#include <bits/stdc++.h> using namespace std; const int mxn = 2e3+5; typedef long long ll; const ll inf = 1e16; ll arr[mxn]; ll dp[mxn][mxn]; ll n, P, Q; bool solve(ll w) { for(int i = 0; i <= n; i++) for(int r = 0; r <= n; r++) dp[i][r] = inf; dp[0][0] = 0; for(int i = 1; i <= n; i++) { for(int r = 0; r <= P; r++) { int x = upper_bound(arr+1, arr+n+1, arr[i]-w)-arr-1; int y = upper_bound(arr+1, arr+n+1, arr[i]-w-w)-arr-1; if(r) dp[i][r] = min(dp[i][r], dp[x][r-1]); dp[i][r] = min(dp[i][r], dp[y][r]+1); } } for(int i = 0; i <= n; i++) if(dp[n][i]<=Q) return true; return false; } int main() { scanf("%lld%lld%lld", &n, &P, &Q); P = min(n, P); Q = min(n, Q); for(int i = 1; i <= n; i++) scanf("%lld", &arr[i]); sort(arr+1, arr+n+1); ll lo = 1, hi = 1e9+5, ans = inf; while(lo<=hi) { ll mid = (lo+hi)>>1; if(solve(mid)) { hi = mid-1; ans = min(ans, mid); } else lo = mid+1; } printf("%lld\n", ans); return 0; }

컴파일 시 표준 에러 (stderr) 메시지

watching.cpp: In function 'int main()':
watching.cpp:33:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%lld%lld%lld", &n, &P, &Q);
     ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
watching.cpp:38:38: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     for(int i = 1; i <= n; i++) scanf("%lld", &arr[i]);
                                 ~~~~~^~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...