Submission #1042719

#TimeUsernameProblemLanguageResultExecution timeMemory
1042719ZicrusShortcut (IOI16_shortcut)C++17
0 / 100
1 ms604 KiB
#include <bits/stdc++.h>
#include "shortcut.h"
using namespace std;

typedef long long ll;

ll find_shortcut(int n, vector<int> l, vector<int> s, int c) {
    vector<ll> dist(n);
    vector<pair<ll, ll>> preMax(n), postMax(n);
    preMax[0] = {s[0], 0};
    for (int i = 1; i < n; i++) {
        dist[i] = dist[i-1] + l[i-1];
        preMax[i] = {dist[i] + s[i], i};
        if (preMax[i-1].first > preMax[i].first) preMax[i] = preMax[i-1];
    }
    postMax[n-1] = {dist[n-1] + s[n-1], n-1};
    for (int i = n-2; i >= 0; i--) {
        postMax[i] = {dist[i] + s[i], i};
        if (postMax[i+1].first > postMax[i].first) postMax[i] = postMax[i+1];
    }

    ll res = 1ll << 62ll;
    for (int low = 0; low < n-1; low++) {
        for (int high = low+1; high < n; high++) {
            // First search
            ll mx = preMax[low].first, mxId = preMax[low].second;
            ll mxFromHigh = postMax[high].first - (dist[high] - dist[low]) + min(dist[high] - dist[low], (ll)c);
            if (mxFromHigh > mx) {
                mx = mxFromHigh;
                mxId = postMax[high].second;
            }
            for (int i = low+1; i < high; i++) {
                ll val = min(dist[i], dist[low] + c + (dist[high] - dist[i])) + s[i];
                if (val > mx) {
                    mx = val;
                    mxId = i;
                }
            }

            // Second search
            ll dst = 0;
            ll dia = 0;
            for (int i = mxId-1; i >= 0; i--) {
                dst += l[i];
                ll ths = min(dst, abs(dist[mxId] - dist[high]) + c + abs(dist[low] - dist[i])) + s[i];
                dia = max(dia, ths);
            }
            dst = 0;
            for (int i = mxId+1; i < n; i++) {
                dst += l[i-1];
                ll ths = min(dst, abs(dist[mxId] - dist[low]) + c + abs(dist[high] - dist[i])) + s[i];
                dia = max(dia, ths);
            }
            dia += s[mxId];
            res = min(res, dia);
        }
    }

    return res;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...