제출 #109934

#제출 시각아이디문제언어결과실행 시간메모리
109934cgiosy구경하기 (JOI13_watching)C++17
100 / 100
159 ms8440 KiB
#include <cstdio> #include <algorithm> inline short min(const short x, const short y) { return x<y ? x : y; } int a[2048], tx, ty; short d[2048][2048], n, x, y; int main() { scanf("%hd%d%d", &n, &tx, &ty); y=ty<n?ty:n; x=tx<n-y?tx:n-y; for(short i=1; i<=n; i++) scanf("%d", a+i); std::sort(a+1, a+n+1); int l=1, r=a[n]-a[1]+1; while(l<r) { int m=(l+r)/2, p=1, q=1; for(short i=1; i<=n; i++) { while(p<=i && a[p]<=a[i]-m) p++; while(q<=i && a[q]<=a[i]-2*m) q++; d[i][0]=d[q-1][0]+1; for(short j=1; j<=i && j<=x; j++) d[i][j]=min(d[p-1][j-1], d[q-1][j]+1); } if(d[n][x]<=y) r=m; else l=m+1; } printf("%d", r); }

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

watching.cpp: In function 'int main()':
watching.cpp:6:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%hd%d%d", &n, &tx, &ty);
  ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
watching.cpp:8:33: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  for(short i=1; i<=n; i++) scanf("%d", a+i);
                            ~~~~~^~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...