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

Envío 6757

Problema 0xde - Ordenar un arreglo grande

  • Autor: danidiaztech
  • Fecha: 2022-11-14 21:30:02 UTC (Hace más de 1 año)
Caso # Resultado Tiempo Memoria
#1
Correcto
0.004 s 1 KBi
#2
Correcto
0.005 s 1 KBi
#3
Incorrecto
0.005 s 1 KBi
#4
Incorrecto
0.005 s 1 KBi
#5
Correcto
0.005 s 1 KBi
#6
Incorrecto
0.005 s 1 KBi
#7
Correcto
0.035 s 3 KBi
#8
Incorrecto
0.025 s 3 KBi
#9
Incorrecto
0.034 s 3 KBi
#10
Incorrecto
0.025 s 3 KBi
#11
Incorrecto
0.031 s 4 KBi
#12
Incorrecto
0.027 s 3 KBi
#13
Incorrecto
0.029 s 3 KBi
#14
Incorrecto
0.026 s 3 KBi
#15
Incorrecto
0.025 s 3 KBi
#16
Incorrecto
0.034 s 4 KBi
#17
Incorrecto
0.047 s 4 KBi
#18
Incorrecto
0.038 s 3 KBi
#19
Incorrecto
0.026 s 3 KBi
#20
Incorrecto
0.043 s 3 KBi
#21
Incorrecto
0.033 s 3 KBi
#22
Incorrecto
0.03 s 3 KBi
#23
Incorrecto
0.024 s 3 KBi
#24
Incorrecto
0.041 s 3 KBi
#25
Incorrecto
0.034 s 3 KBi
#26
Incorrecto
0.046 s 3 KBi
#27
Incorrecto
0.024 s 3 KBi
Puntos totales: 15 / 100

Código

// Made by Daniel Diaz (@Danidiaztech)
#include <bits/stdc++.h>
using namespace std;

#define endl '\n'
#define fastInp cin.tie(0); cout.tie(0); ios_base::sync_with_stdio(0);
#define forn(i, n) for (int i = 0; i < n; i++) // for in range in python
#define FOR(i, a, b) for (int i = a; i < b; i++) // for in range in python
#define int long long int
#define double long double
#define pb push_back
#define ff first
#define ss second
#define mk make_pair

typedef pair<int, int> pii;

const int MAX = 1e5 + 10;
const int MIN = -MAX;
const int INF = LLONG_MAX;
const int MINF = LLONG_MIN;
const int MOD = 1e9 + 7;

int a[MAX];

// p -> start, q -> middle,r -> end
void merge(int p, int q, int r){
  int n1 = q - p + 1;
  int n2 = r - q;

  int L[n1], M[n2];
  /// From start to middle
  for (int i = 0; i < n1; i++){
    L[i] = a[p + i];
  }

  // From middle to end
  for (int j = 0 ; j < n2; j++){
    M[j] = a[q + j + 1];
  }

  int i,j,k;
  i = j  = 0;
  k = p;

  while (i < n1 && j < n2){
    if (L[i] <=  M[j]){
      a[k]= L[i];
      i++;
    }
    else{
      a[k]= M[j];
      j++;
    }
    k++;
  }

  // Pick remaining elements and put them in the array
  while (i < n1){
    a[k] = L[i];
    i++;
    k++;
  }

  while (j < n2){
    a[k]= M[i];
    j++;
    k++;
  }
}

void mergesort(int l, int r){
  // Sort the array by halving it recursively
  // until we have parts of two elements, then, we sort these elements
  // and merge them again to form the sorted array
  if (l < r){
    int mid = l + (r - l) / 2;
    mergesort(l, mid);
    mergesort(mid + 1, r);

    // Merge the sorted arrays
    merge(l, mid, r);
  }
}

void quicksort(){

}

void heapsort(){

}

int32_t main() {
  fastInp;
  #if LOCAL
    freopen("input.txt", "r", stdin);
    freopen("output.txt", "w", stdout);
  #endif

  int n; cin >> n;
  forn(i, n) cin >> a[i];
  // heapsort();
  // quicksort();
  mergesort(0, n);
  forn(i, n) cout << a[i] << " ";

  return 0;
}