제출 #43804

#제출 시각아이디문제언어결과실행 시간메모리
43804top34051구경하기 (JOI13_watching)C++14
50 / 100
307 ms16280 KiB
#include<bits/stdc++.h>
using namespace std;
const int maxn = 2e3 + 5;
int n,p,q;
vector<int> t;
int a[maxn];
int warp1[maxn], warp2[maxn];
int dp[maxn][maxn];
int solve(int w) {
    for(int x=1,y1=1,y2=1;x<=n;x++) {
        while(y1<=n && a[x] + w > a[y1]) y1++;
        while(y2<=n && a[x] + w*2 > a[y2]) y2++;
        warp1[x] = y1; warp2[x] = y2;
    }
    for(int x=n;x>=1;x--) {
        for(int i=0;i<=p;i++) {
            dp[x][i] = dp[warp2[x]][i] + 1;
            if(i) dp[x][i] = min(dp[x][i], dp[warp1[x]][i-1]);
        }
    }
    return dp[1][p]<=q;
}
int main() {
    scanf("%d%d%d",&n,&p,&q);
    for(int i=1;i<=n;i++) {
        int x;
        scanf("%d",&x);
        t.push_back(x);
    }
    sort(t.begin(),t.end());
    t.erase(unique(t.begin(),t.end()),t.end());
    n = (int)t.size();
    for(int i=1;i<=n;i++) a[i] = t[i-1];
    //fuck you
    if(p+q>=n) return !printf("1");
    //solve
    int l = 0, r = 1e9, mid, res;
    while(l<=r) {
        mid = (l+r)/2;
        if(solve(mid)) res = mid, r = mid-1;
        else l = mid+1;
    }
    printf("%d",res);
}

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

watching.cpp: In function 'int main()':
watching.cpp:24:29: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d%d%d",&n,&p,&q);
                             ^
watching.cpp:27:23: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
         scanf("%d",&x);
                       ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...