답안 #762902

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
762902 2023-06-22T01:10:07 Z huutuan Just Long Neckties (JOI20_ho_t1) C++14
0 / 100
0 ms 340 KB
#include<bits/stdc++.h>

using namespace std;

#define int long long
#define all(x) x.begin(), x.end()
#define rall(x) x.rbegin(), x.rend()
#define sz(x) ((int)x.size())
#define sumof(x) accumulate(all(x), 0ll)

const int N=2e5+10;
int pre[N], suf[N], n, a[N], b[N];

void solve(int tc){
    // cout << "Case #" << tc << ": ";
    cin >> n;
    for (int i=1; i<=n+1; ++i) cin >> a[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; ++i) pre[i]=max(pre[i-1], a[i]-b[i]);
    for (int i=n; i>=1; --i) suf[i]=max(suf[i+1], a[i+1]-b[i]);
    for (int i=1; i<=n+1; ++i) cout << max(pre[i-1], suf[i]) << " \n"[i==n+1];
}

int32_t main(){
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
    int ntests=1;
    // cin >> ntests;
    for (int i=1; i<=ntests; ++i) solve(i);
    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 340 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 340 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 340 KB Output isn't correct
2 Halted 0 ms 0 KB -