제출 #898483

#제출 시각아이디문제언어결과실행 시간메모리
898483BlagojJust Long Neckties (JOI20_ho_t1)C++17
100 / 100
83 ms10952 KiB
#include <bits/stdc++.h>

using namespace std;

#define endl '\n'
#define ll long long
#define all(x) (x).begin(), (x).end()

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    int n;
    cin >> n;
    pair<int, int> a[n + 1];
    for (int i = 0; i <= n; i++) cin >> a[i].first, a[i].second = i;
    sort(a, a + n + 1);
    int b[n];
    for (int i = 0; i < n; i++) cin >> b[i];
    sort(b, b + n);
    int leftAns[n + 1], rightAns[n + 1];
    leftAns[0] = max(a[0].first - b[0], 0);
    for (int i = 1; i < n; i++) leftAns[i] = max(leftAns[i - 1], max(a[i].first - b[i], 0));
    rightAns[n] = max(a[n].first - b[n - 1], 0);
    for (int i = n - 1; i > 0; i--) rightAns[i] = max(rightAns[i + 1], max(a[i].first - b[i - 1], 0));
    int ans[n + 1];
    for (int i = 0; i <= n; i++) {
        ans[a[i].second] = 0;
        if (i) ans[a[i].second]= max(ans[a[i].second], leftAns[i - 1]);
        if (i < n) ans[a[i].second]= max(ans[a[i].second], rightAns[i + 1]);
    }
    for (int i = 0; i <= n; i++) cout << ans[i] << " ";
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...