Submission #1038559

# Submission time Handle Problem Language Result Execution time Memory
1038559 2024-07-30T00:29:49 Z ArthuroWich Rice Hub (IOI11_ricehub) C++17
0 / 100
2 ms 348 KB
#include "ricehub.h"
#include<bits/stdc++.h>
using namespace std;
int besthub(int n, int L, int x[], long long B) {
    int ans = 0, h = x[0], s = 0, l = 0, r = 1;
    deque<int> left, right;
    for (int i = 1; i < n; i++) {
        if (s+abs(x[i]-x[0]) <= B) {
            s += abs(x[i]-x[0]);
            right.push_back(x[i]);
            r = i;
        }
    }
    ans = right.size()+1;
    for (int i = 1; i < n; i++) {
        int diff = abs(x[i]-h);
        left.push_back(h);
        s += left.size()*diff;
        s -= right.size()*diff;
        if (!right.empty()) {
            right.pop_front();
        }
        h = x[i];
        while(!left.empty() && s > B) {
            s -= abs(left.front()-h);
            left.pop_front();
            l++;
        }
        if (r < i || right.empty()) {
            r = i;
        }
        while(r+1 < n && s+abs(h-x[r+1]) <= B) {
            s += abs(h-x[r+1]);
            right.push_back(x[r+1]);
            r++;
        }
        while(!left.empty() && r+1 < n && s-abs(h-left.front())+abs(h-x[r+1]) <= B) {
            s = s-abs(h-left.front())+abs(h-x[r+1]);
            left.pop_front();
            right.push_back(x[r+1]);
            l++;
            r++;
        }
        while(r+1 < n && s+abs(h-x[r+1]) <= B) {
            right.push_back(x[r+1]);
            r++;
        }
        ans = max(ans, (int) left.size() + (int) right.size() + 1);
    }
    return ans;
}
# Verdict Execution time Memory Grader output
1 Correct 0 ms 348 KB Output is correct
2 Correct 0 ms 348 KB Output is correct
3 Correct 0 ms 348 KB Output is correct
4 Incorrect 0 ms 348 KB Output isn't correct
5 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 0 ms 348 KB Output is correct
2 Correct 0 ms 348 KB Output is correct
3 Correct 0 ms 348 KB Output is correct
4 Incorrect 0 ms 348 KB Output isn't correct
5 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -