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

Envío 4932

Problema 0x63 - Encontrar el primer elemento mayor a X en un arreglo ordenado

  • Autor: DanielP
  • Fecha: 2021-09-20 20:34:27 UTC (Hace más de 2 años)
Caso # Resultado Tiempo Memoria
#1
Correcto
0.004 s 2 KBi
#2
Correcto
0.004 s 0 KBi
#3
Correcto
0.004 s 0 KBi
#4
Correcto
0.006 s 3 KBi
#5
Correcto
0.009 s 1 KBi
#6
Correcto
0.006 s 1 KBi
#7
Correcto
0.047 s 2 KBi
#8
Correcto
0.005 s 2 KBi
#9
Correcto
0.006 s 1 KBi
#10
Correcto
0.004 s 1 KBi
#11
Correcto
0.005 s 1 KBi
#12
Correcto
0.105 s 2 KBi
#13
Correcto
0.103 s 2 KBi
#14
Correcto
0.075 s 3 KBi
#15
Correcto
0.069 s 2 KBi
#16
Correcto
0.06 s 1 KBi
#17
Correcto
0.073 s 2 KBi
Puntos totales: 100 / 100

Código

/// Write by Daniel Perez .PERAPRO
#include<bits/stdc++.h>

using namespace std;
#define fast_io ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
#define pb push_back
#define ff first
#define ss second
typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;
using vi=vector<int>;
using vl=vector<ll>;
using pii=pair<int,int>;
char el = '\n';
char esp = ' ';

template<class T> bool ckmin(T& a, const T& b) { return b < a ? a = b, 1 : 0; }
template<class T> bool ckmax(T& a, const T& b) { return a < b ? a = b, 1 : 0; }

ostream& operator<<(ostream& os, const vector<int> &v){
    for(auto const &i: v){
        os<<i<<" ";
    }
    os<<'\n';
    return os;
}
string yes="Yes";
string no="No";


int main(){
	fast_io;
	/*
 	freopen("input.txt","r",stdin);
    freopen("output.txt","w",stdout);
    */
    int n;
    cin>>n;
    vi v(n);
    for(int &e:v) cin>>e;
    int querys;
    cin>>querys;
    while(querys--){
        int x;
        cin>>x;
        int ans=upper_bound(v.begin(), v.end(), x) - v.begin();
        cout<<ans<<el;
    }
}

/*

*/