Submission #1006235

#TimeUsernameProblemLanguageResultExecution timeMemory
1006235phongJust Long Neckties (JOI20_ho_t1)C++17
100 / 100
69 ms22612 KiB
#include<bits/stdc++.h>

#define ll long long
//#define int long long
const int nmax = 1e6 + 5, N = 100 + 2e5 + 2;
const ll oo = 1e9;
const int lg = 7, M = 4e3;
const int base = 2e5, mod = 998244353;
#define pii pair<ll, ll>
#define fi first
#define se second
#define endl "\n"
#define debug(a, n) for(int i = 1; i <= n; ++i) cout << a[i] << ' ';cout << endl
using namespace std;


int n;
pii a[nmax];
ll pre[nmax], suf[nmax], b[nmax];
ll ans[nmax];
main(){
    ios_base::sync_with_stdio(0);
    cin.tie(0);cout.tie(0);
    //    freopen("code.inp", "r", stdin);
    //    freopen("code.out", "w", stdout);
    cin >> n;
    for(int i = 1; i <= n + 1; ++i) cin >> a[i].fi, a[i].se = i;
    for(int i = 1; i <= n; ++i) cin >> b[i];
    sort(a + 1, a + 1 + n + 1);
    sort(b + 1, b + 1 + n);
    for(int i = 1; i <= n + 1; ++i){
        pre[i] = max(pre[i - 1], a[i].fi - b[i]);
    }
    for(int i = n + 1; i >= 1; --i){
        suf[i] = max(suf[i + 1], a[i].fi - b[i - 1]);
        ans[a[i].se] = max(pre[i - 1], suf[i + 1]);
    }
    debug(ans, n + 1);
}
/*
5
1 2
2 3
3 4
4 5
5 1




*/

Compilation message (stderr)

ho_t1.cpp:21:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   21 | main(){
      | ^~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...