1901D - Yet Another Monster Fight - CodeForces Solution


binary search implementation

Please click on ads to support us..

C++ Code:

// To Harry Potter, Professor Dumbledore and JK Rowling

# include <iostream>
# include <vector>
# include <algorithm>
# include <cmath>
using namespace std;

using lli = long long int;

int main() {
    lli N;
    scanf("%lld", &N);
    vector <lli> in(N + 1);
    vector <lli> pm(N + 1);
    vector <lli> sm(N + 1);
    vector <lli> an;
    lli mx;
    for (int i = 1; i <= N; i++) {
        cin >> in[i];
    }
    pm[1] = N - 1 + in[1];
    for (int j = 2; j <= N; j++) {
        pm[j] = max(pm[j - 1], N - j + in[j]);
    }
    sm[N] = N - 1 + in[N];
    for (int j = N - 1; j >= 1; j--) {
        sm[j] = max(sm[j + 1], j - 1 + in[j]);
    }
    for (int k = 1; k <= N; k++) {
        mx = in[k];
        if (k > 1) {
            mx = max(mx, pm[k - 1]);
        }
        if (k < N) {
            mx = max(mx, sm[k + 1]);
        }
        an.push_back(mx);
    }
    cout << (*min_element(an.begin(), an.end()));
    return 0;
}


Comments

Submit
0 Comments
More Questions

903C - Boxes Packing
887A - Div 64
755B - PolandBall and Game
808B - Average Sleep Time
1515E - Phoenix and Computers
1552B - Running for Gold
994A - Fingerprints
1221C - Perfect Team
1709C - Recover an RBS
378A - Playing with Dice
248B - Chilly Willy
1709B - Also Try Minecraft
1418A - Buying Torches
131C - The World is a Theatre
1696A - NIT orz
1178D - Prime Graph
1711D - Rain
534A - Exam
1472A - Cards for Friends
315A - Sereja and Bottles
1697C - awoo's Favorite Problem
165A - Supercentral Point
1493A - Anti-knapsack
1493B - Planet Lapituletti
747B - Mammoth's Genome Decoding
1591C - Minimize Distance
1182B - Plus from Picture
1674B - Dictionary
1426C - Increase and Copy
520C - DNA Alignment