Submission #743355

#TimeUsernameProblemLanguageResultExecution timeMemory
743355saayan007Rainforest Jumps (APIO21_jumps)C++17
8 / 100
4088 ms4112 KiB
#include "bits/stdc++.h"
using namespace std;

#define fr first
#define sc second
#define eb emplace_back
const char nl = '\n';

void __print(int x) {cerr << x;}
void __print(long x) {cerr << x;}
void __print(unsigned x) {cerr << x;}
void __print(unsigned long x) {cerr << x;}
void __print(unsigned long long x) {cerr << x;}
void __print(float x) {cerr << x;}
void __print(double x) {cerr << x;}
void __print(long double x) {cerr << x;}
void __print(char x) {cerr << '\'' << x << '\'';}
void __print(const char *x) {cerr << '\"' << x << '\"';}
void __print(const string &x) {cerr << '\"' << x << '\"';}
void __print(bool x) {cerr << (x ? "true" : "false");} 
 
template<typename T, typename V>
void __print(const pair<T, V> &x) {cerr << '{'; __print(x.first); cerr << ','; __print(x.second); cerr << '}';}
template<typename T>
void __print(const T &x) {int f = 0; cerr << '{'; for (auto &i: x) cerr << (f++ ? "," : ""), __print(i); cerr << "}";}
void _print() {cerr << "]\n";}
template <typename T, typename... V>
void _print(T t, V... v) {__print(t); if (sizeof...(v)) cerr << ", "; _print(v...);}
#ifndef ONLINE_JUDGE
#define dbg(x...) cerr << "LINE(" << __LINE__ << ") -> " <<"[" << #x << "] = ["; _print(x)
#else
#define dbg(x...)
#endif

vector<int> L, R;
vector<int> dist;
int n;
void init(int N, std::vector<int> H) {
    n = N;
    dist.resize(N);

    L.resize(N);
    stack<int> st;
    for(int i = 0; i < N; ++i) {
        while(!st.empty() && H[st.top()] < H[i]) st.pop();
        L[i] = (st.empty() ? -1 : st.top());
        st.push(i);
    }
    while(!st.empty()) st.pop();

    R.resize(N);
    for(int i = N - 1; i >= 0; --i) {
        while(!st.empty() && H[st.top()] < H[i]) st.pop();
        R[i] = (st.empty() ? -1 : st.top());
        st.push(i);
    }

    /* for(int i = 0; i < N; ++i) { */
        /* cout << i << " : " << L[i] << ' ' << R[i] << nl; */
    /* } */
}

int minimum_jumps(int A, int B, int C, int D) {
    int opt = 10*n;
    for(int x = A; x <= B; ++x) {
        for(int j = 0; j < n; ++j) dist[j] = -1;
        dist[x] = 0;
        queue<int> q;
        q.emplace(x);
        while(!q.empty()) {
            int y = q.front(); q.pop();
            if(C <= y && y <= D) opt = min(opt, dist[y]);
            if(L[y] != -1 && dist[L[y]] == -1) {
                dist[L[y]] = dist[y] + 1;
                q.emplace(L[y]);
            }
            if(R[y] != -1 && dist[R[y]] == -1) {
                dist[R[y]] = dist[y] + 1;
                q.emplace(R[y]);
            }
        }
    }
    return opt > n ? -1 : opt;
}
#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...