Submission #763080

#TimeUsernameProblemLanguageResultExecution timeMemory
763080SinoJust Long Neckties (JOI20_ho_t1)C++14
0 / 100
1 ms212 KiB
#include<bits/stdc++.h>
using namespace std;
#define ll long long

typedef pair<int, int> ii;

int maxpre[2][200005];
int n;
ii a[200005];
int b[200005];
int ans[200005];

int main() {
    cin >> n;
    for(int i = 1; i <= n + 1; i++) {
        cin >> a[i].first;
        a[i].second = i;
    }
    for(int i = 1; i <= n; i++) {
        cin >> b[i];
    }
    sort(a + 1, a + n + 2);
    sort(b + 1, b + n + 1);
    for(int i = 1; i <= n + 1; i++) {
        ans[a[i].second] = i;
    }
    for(int i = 1; i <= n; i++) {
        maxpre[0][i] = max(maxpre[0][i - 1], a[i].first - b[i]);
    }
    for(int i = n; i >= 1; i--) {
        maxpre[1][i] = max(maxpre[1][i + 1], a[i].first - b[i - 1]);
    }
    for(int i = 1; i <= n + 1; i++) {
        cout << max(maxpre[0][ans[i] - 1], maxpre[1][ans[i] + 1]) << " ";
    }
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...