█████████ ████ ███░░░░░███ ░░███ ███ ░░░ ██████ ███████ ██████ ██████ ░███ ███░░███ ███░░███ ███░░███ ███░░███ ░███ ░███ ░███░███ ░███ ░███████ ░███ ░███ ░░███ ███░███ ░███░███ ░███ ░███░░░ ░███ ░███ ░░█████████ ░░██████ ░░████████░░██████ ░░██████ ░░░░░░░░░ ░░░░░░ ░░░░░░░░ ░░░░░░ ░░░░░░

Envío 2269

Problema 0xcf - Mirando al horizonte

  • Autor: Osvaldo
  • Fecha: 2020-12-07 21:05:10 UTC (Hace más de 3 años)
Caso # Resultado Tiempo Memoria
#1
Correcto
0.007 s 2 KBi
#2
Correcto
0.008 s 2 KBi
#3
Correcto
0.006 s 22 KBi
#4
Correcto
0.008 s 2 KBi
#5
Correcto
0.006 s 8 KBi
#6
Correcto
0.27 s 7 KBi
#7
Correcto
0.258 s 6 KBi
#8
Correcto
0.299 s 6 KBi
#9
Correcto
0.172 s 54 KBi
#10
Correcto
0.218 s 7 KBi
Puntos totales: 100 / 100

Código

#include <bits/stdc++.h>
#define ii              pair<int,int>
#define F               first
#define S               second
#define pb              push_back
#define all(x)          (x).begin(),(x).end()
#define rall(x)         (x).rbegin(),(x).rend()
#define fore(i, a, b)   for(int i = a; i < b; i += 1)
#define forr(i, a)      for(int i = a; i >= 0; i--)
#define sz(s)           int(s.size())
#define cls(a,car)      memset(a,car,sizeof (a))
#define db(x)           cout << #x << " is " << x << '\n'
#define angle(x)        double(x * acos(-1) / 180.0)
using namespace std;
void debug(){cout << endl;}
template<typename T, typename... Args>
void debug(T a, Args... args){cout << a << " "; debug(args...);}
typedef long long   ll;
typedef vector<int> vi;
typedef vector<ii>  vii;
const int N = 5e5 + 5;
const ll mod = 1e9 + 7;
const double E = 1e-7;
const int oo = 1e9;
int v[N];
void solve(){
    int n;
    cin >> n;
    for(int i = 0; i < n; i++)
        cin >> v[i];
    stack<int> s;
    vi ans(n, 0);
    for(int i = n - 1; i >= 0; i--){
        s.push(v[i]);
        while(sz(s) && v[i] >= s.top())
            s.pop();
        if(!sz(s))
            ans[i] = -1;
        else
            ans[i] = s.top();
        s.push(v[i]);
    }
    cout << ans[0];
    for(int i = 1; i < n; i++)
        cout << ' ' << ans[i];
    cout << '\n';
}
int main(){
    #ifdef LOCAL
        freopen("input.txt", "r", stdin);
        freopen("output.txt", "w", stdout);
    #else
       ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
    #endif

    int t = 1;
    cin >> t;
    for(int i = 1; i <= t; i++){
        cout << "Case #" << i << ": ";
        solve();
    }

    #ifdef LOCAL
        cerr << "Time elapsed: " << 1.0 * clock() / CLOCKS_PER_SEC << " s.\n";
    #endif
    return 0;
}