답안 #248634

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
248634 2020-07-13T00:19:48 Z thecodingwizard Lightning Conductor (POI11_pio) C++11
0 / 100
379 ms 16104 KB
#include <bits/stdc++.h>

using namespace std;

const int inf = 1e9+10;

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

// returns when right part of func a intersects func b
int intersectRight(func a, func b) {
    if (a.h >= b.h) return inf;
    long long d = b.h-a.h;
    long double x = (double)(b.i-a.i-d*d)/2/d;
    long long ans = ceil(x*x)+b.i;
    if (ans > inf) return inf;
    return ans;
}

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

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 < i) {
                s.top().r = i-1;
                break;
            }
            if (intersect <= f2.l) s.pop();
            else {
                if (intersect - 1 <= n-1) s.top().r = intersect - 1;
                f.l = intersect;
                break;
            }
        }
        if (f.l <= n-1) s.push(f);
    }
    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], f.h+(int)ceil(sqrt(i-f.i)));
    }
    for (int i = 0; i < n; i++) {
        //cout << "mx[" << i << "] = " << mx[i] << endl;
    }
}

int main() {
    cin >> n;
    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;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 384 KB Output isn't correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 384 KB Output isn't correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 384 KB Output isn't correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 27 ms 1144 KB Output isn't correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 43 ms 1784 KB Output isn't correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 54 ms 2040 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 74 ms 2936 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 174 ms 6304 KB Output is correct
2 Correct 154 ms 6136 KB Output is correct
3 Incorrect 127 ms 5496 KB Output isn't correct
# 결과 실행 시간 메모리 Grader output
1 Correct 288 ms 11384 KB Output is correct
2 Correct 256 ms 9416 KB Output is correct
3 Incorrect 202 ms 8568 KB Output isn't correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 379 ms 16104 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 376 ms 13560 KB Output is correct
2 Correct 362 ms 13176 KB Output is correct
3 Incorrect 271 ms 11384 KB Output isn't correct