Submission #856473

#TimeUsernameProblemLanguageResultExecution timeMemory
856473nninRice Hub (IOI11_ricehub)C++14
0 / 100
1096 ms636 KiB
#include "ricehub.h"
#include<bits/stdc++.h>
#define ll long long
#define pii pair<ll,int>
using namespace std;

int besthub(int n, int m, int x[], long long b) {
    int ans = 0;
    int posi = x[0];
    ll cost = 0;
    int l = 0;
    int r = 0;
    for(int i=0;i<n;i++) {
        if(i>0) cost += (x[i]-x[i-1])*(i-l-r+i-1);
        while(r<i) {
            cost += x[++r]-x[i];
        }
        while(cost>b) {
            if(x[r]-x[i] > x[i]-x[l]) {
                cost -= x[r--]-x[i];
            } else {
                cost -= x[i]-x[l++];
            }
        }
        while(true) {
            if(r<n-1 && x[r+1]-x[i] <= x[i]-x[l]) {
                cost += x[++r]-x[i];
                cost -= x[i]-x[l++];
            } else if(l>0 && x[i]-x[l-1] <= x[r]-x[i]) {
                cost += x[i]-x[--l];
                cost -= x[r--]-x[i];
            } else if(r<n-1 && cost+x[r+1]-x[i] <= b) {
                cost += x[++r]-x[i];
            } else if(l>0 && cost+x[i]-x[l-1] <= b) {
                cost += x[i]-x[--l];
            } else {
                break;
            }
        }
        ans = max(ans, r-l+1);
    }
    return ans;
}
/*
5 20 6
1
2
10
12
14
3

*/

Compilation message (stderr)

ricehub.cpp: In function 'int besthub(int, int, int*, long long int)':
ricehub.cpp:9:9: warning: unused variable 'posi' [-Wunused-variable]
    9 |     int posi = x[0];
      |         ^~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...