Submission #248658

# Submission time Handle Problem Language Result Execution time Memory
248658 2020-07-13T01:06:52 Z thecodingwizard Lightning Conductor (POI11_pio) C++11
45 / 100
377 ms 13260 KB
#include <bits/stdc++.h>

using namespace std;

const int inf = 1e9+10;

struct func {
    int h, i, l, r;
};

int n; 
int mx[500000];
int mx2[500000];
int H[500000];
int Sqrt[500000];

int eval(func f, int i) {
    return f.h+Sqrt[i-f.i];
}

// returns when right part of func a intersects func b
int intersectRight(func a, func b) {
    if (eval(a, n) >= eval(b, n)) return inf;
    long long d = b.h-a.h;
    if (b.i-a.i-d*d<0) return -1;
    long double x = (b.i-a.i)/2.0/d-d/2.0;
    long long ans = ceil(x*x-0.001)+b.i;
    assert(ans < n);
    return ans;
}

void solveRight(int mx[]) {
    stack<func> s;
    for (int i = 0; i < n; i++) {
        func f = {H[i], i, i, n-1};
        while (!s.empty()) {
            func f2 = s.top();
            int intersect = intersectRight(f2, f);
            //cout << f2.i << " intersects " << f.i << " at " << intersect << endl;
            if (intersect <= f2.l) {
                s.top().r = f.l-1;
                break;
            } else {
                if (intersect - 1 <= n-1) s.top().r = intersect - 1;
                f.l = intersect;
                break;
            }
        }
        if (f.l <= n-1) s.push(f);
        assert(f.l >= i);
    }
    while (!s.empty()) {
        func f = s.top(); s.pop();
        //cout << f.i << " is max from " << f.l << " to " << f.r << endl;
        for (int i = f.l; i <= f.r; i++) mx[i] = max(mx[i], eval(f, i));
    }
    for (int i = 0; i < n; i++) {
        //cout << "mx[" << i << "] = " << mx[i] << endl;
    }
}

int main() {
    cin >> n;
    Sqrt[0] = 0;
    for (int i = 1; i <= 1000; i++) {
        for (int j = (i-1)*(i-1)+1; j <= min(i*i, n-1); j++) Sqrt[j] = i;
    }
    for (int i = 0; i < n; i++) {
        cin >> H[i]; mx[i] = H[i];
    }
    solveRight(mx);
    for (int i = 0; i < n/2; i++) {
        swap(H[i], H[n-i-1]);
    }
    solveRight(mx2);
    for (int i = 0; i < n; i++) {
        mx[i] = max(mx[i], mx2[n-1-i]);
    }
    for (int i = 0; i < n/2; i++) {
        swap(H[i], H[n-i-1]);
    }
    for (int i = 0; i < n; i++) {
        cout << mx[i]-H[i] << "\n";
    }
    return 0;
}
# Verdict Execution time Memory Grader output
1 Correct 0 ms 384 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 0 ms 384 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 1 ms 384 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 21 ms 1152 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 37 ms 1664 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 51 ms 1816 KB Output is correct
2 Incorrect 20 ms 1656 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 70 ms 2296 KB Output is correct
2 Correct 70 ms 2296 KB Output is correct
3 Incorrect 52 ms 2808 KB Output isn't correct
# Verdict Execution time Memory Grader output
1 Correct 176 ms 5092 KB Output is correct
2 Correct 148 ms 4856 KB Output is correct
3 Incorrect 121 ms 5580 KB Output isn't correct
# Verdict Execution time Memory Grader output
1 Correct 249 ms 9340 KB Output is correct
2 Correct 241 ms 7288 KB Output is correct
3 Incorrect 194 ms 9336 KB Output isn't correct
# Verdict Execution time Memory Grader output
1 Correct 377 ms 13260 KB Output is correct
2 Incorrect 353 ms 10232 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 349 ms 10620 KB Output isn't correct
2 Halted 0 ms 0 KB -