ejerciccio de competencia

Iniciado por + 1 Oculto(s), 11 Julio 2016, 02:27 AM

0 Miembros y 1 Visitante están viendo este tema.

+ 1 Oculto(s)

Código (xml) [Seleccionar]

Is Bigger Smarter?
Some people think that the bigger an elephant is, the smarter it is. To disprove this, you want to take
the data on a collection of elephants and put as large a subset of this data as possible into a sequence
so that the weights are increasing, but the IQ's are decreasing.
Input
The input will consist of data for a bunch of elephants, one elephant per line, terminated by the endof-file.
The data for a particular elephant will consist of a pair of integers: the first representing its size
in kilograms and the second representing its IQ in hundredths of IQ points. Both integers are between
1 and 10000. The data will contain information for at most 1000 elephants. Two elephants may have
the same weight, the same IQ, or even the same weight and IQ.
Output
Say that the numbers on the i-th data line are W[i] and S[i]. Your program should output a sequence
of lines of data; the first line should contain a number n; the remaining n lines should each contain a
single positive integer (each one representing an elephant). If these n integers are a[1], a[2],..., a[n] then
it must be the case that
W[a[1]] < W[a[2]] < ... < W[a[n]]
and
S[a[1]] > S[a[2]] > ... > S[a[n]]
In order for the answer to be correct, n should be as large as possible. All inequalities are strict:
weights must be strictly increasing, and IQs must be strictly decreasing.
There may be many correct outputs for a given input, your program only needs to find one.
Sample Input
6008 1300
6000 2100
500 2000
1000 4000
1100 3000
6000 2000
8000 1400
6000 1200
2000 1900
Sample Output
4
4
5
9
7



alguna solucion ?? no se como comenzar  gracias y saludos



no logro entender como obtiener el Output, en realidad no entiendo el enunciado del todo

AlbertoBSD

#1
Hola

Del conjunto dado debes encontrar los n elementos qud cumplan la condicion

CitarW[a[1]] < W[a[2]] < ... < W[a[n]]
and
S[a[1]] > S[a[2]] > ... > S[a[n]]

Entonces de la salida tenemos que:

4 // Numero n de lineas siguientes
4 // datos 1000 4000
5 // datos 1100 3000
9 // datos 2000 1900
7 // datos 8000 1400



Si te fijas la primera columna de los datos comentados va de menor a mayor y la segunda va de mayor a menor.

el n debe de ser el mas alto posible y pueden existir varios resultados por ejemplo en el ejercicio anterior el ultimo 7 también pudo ser 8

8 //datos 6000 1200

Y conserva la mismas condiciones.

Como llegar al resultado deja pienso en un algoritmo.

Saludos




Ya vi es un problema de busqueda y ordenamiento estaba pensando varias formas de hacerlo y las mas eficientes son usando arboles y subarboles para evaluar coincidencias en subconjuntos
Donaciones
1Coffee1jV4gB5gaXfHgSHDz9xx9QSECVW

+ 1 Oculto(s)

gracias por ayudarme, como obtener el n?

AlbertoBSD

Ese mi estimado es el detalle del algoritmo, hay que permutar de manera eficiente todas las combinaciones que cumplan esas restricciones y dar caulquiera de los resultados N.

Hay que usar lo mas eficiente ya que te indican que la máxima cantidad de inputs es de 1000.

Saludos
Donaciones
1Coffee1jV4gB5gaXfHgSHDz9xx9QSECVW

+ 1 Oculto(s)

Código (java) [Seleccionar]

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Scanner;
import java.util.StringTokenizer;


public class Main {

    Elefantes maxEPHeader = null;

    static class Elefantes implements Comparable<Elefantes> {

        int peso = 0;
        int iq = 0;
        int n = 0;

        Elefantes(int p, int iq, int m) {
            this.peso = p;
            this.iq = iq;
            this.n = m;
        }

        @Override
        public int compareTo(Elefantes o) {
            if (this.peso > o.peso) {
                return 1;
            } else if (this.peso < o.peso) {
                return -1;
            } else if (this.iq < o.iq) {
                return 1;
            } else if (this.iq > o.iq) {
                return -1;
            }
            return 0;
        }
    }
   
    public ArrayList<Elefantes> maxSecuencia(){
   
    return null;
    }

    public static void main(String[] args) throws IOException {
        ArrayList<Elefantes> e = new ArrayList<Elefantes>();
        int inputCount = 1;
        Main m = new Main();
        String line;
        StringTokenizer stk;
        BufferedReader  scanner = new BufferedReader(new InputStreamReader(System.in));
        while ((line=scanner.readLine())!=null) {
            stk=new StringTokenizer(line," ");
            Elefantes ele = new Elefantes(Integer.parseInt(stk.nextToken()), Integer.parseInt(stk.nextToken()), inputCount);
            e.add(ele);
            inputCount++;
        }
        Collections.sort(e);
        System.out.println("jooooo      "+e);
        scanner.close();
    }

}



no sale del ciclo while, no entiendo porque

AlbertoBSD

Estas leyendo de system.in

En system.in nunca alcanza el fin  del archivo.

Cuando deberia de ser desde un archivo
Código (java) [Seleccionar]
BufferedReader in
  = new BufferedReader(new FileReader("foo.in"));


Saludos
Donaciones
1Coffee1jV4gB5gaXfHgSHDz9xx9QSECVW

+ 1 Oculto(s)

estoy pasando datos desde consola, se hace lo mismo con Scanner


saludos

AlbertoBSD

Entonces necesitas tener una condicion de parada por ejemplo que cuando lea 0 0 se pare y no agrege esos valores.

Estos concursos siempre se hacen desde archivo y es mejor que lo hagas asi con el pero de los casos, si el ejemplo te dice que van a llegar 1000 datos, tu construye tu archivo con esos datos.

De hecho para este ejemplo en especifico hice este codigo para generar los numeros dichos:

#include<stdio.h>
#include<time.h>
#include<stdlib.h>

int main() {
int i = 0;
int aux1,aux2;
srand(time(NULL));
while(i < 1000) {
aux1 = rand() % 10000;
aux2 = rand() % 10000;
printf("%i %i\n",aux1,aux2);
i++;
}
return 0;
}


Esta en C claro, pero lo compilo y redirijo la salida a un archivo .txt con el operador > de la consola.

Saludos!
Donaciones
1Coffee1jV4gB5gaXfHgSHDz9xx9QSECVW

+ 1 Oculto(s)

hice lo mismo en mis otros ejercicios y funcionaba

pero ahora no sale del while

+ 1 Oculto(s)

este es mi codigo pero aun no funciona del todo


import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.Collections;
import java.util.StringTokenizer;

public class Main {

    Elefantes maxEPHeader = null;

    static class Elefantes {

        int peso = 0;
        int iq = 0;
        int n = 0;

        Elefantes(int p, int iq, int m) {
            this.peso = p;
            this.iq = iq;
            this.n = m;
        }

    }

    public ArrayList<Elefantes> ordenar(ArrayList<Elefantes> listaElefantes) {
        for (int i = 0; i < listaElefantes.size(); i++) {
            for (int j = 0; j < listaElefantes.size() - i - 1; j++) {
                if (listaElefantes.get(j + 1).peso < listaElefantes.get(j).peso) {
                    Elefantes ele = listaElefantes.get(j + 1);
                    listaElefantes.set(j + 1, listaElefantes.get(j));
                    listaElefantes.set(j, ele);
                } else if (listaElefantes.get(j + 1).peso == listaElefantes.get(j).peso) {
                    if (listaElefantes.get(j + 1).iq < listaElefantes.get(j).iq) {
                        Elefantes ele = listaElefantes.get(j + 1);
                        listaElefantes.set(j + 1, listaElefantes.get(j));
                        listaElefantes.set(j, ele);
                    }
                }
            }
        }
        return listaElefantes;
    }

    public void clasificar(ArrayList<Elefantes> lista) {
        lista = ordenar(lista);
        int flag=1;
        for (int i = 0; i < lista.size(); i++) {
            System.out.println(lista.get(i).peso + " " + lista.get(i).iq + " " + lista.get(i).n);
        }
        Elefantes pivote = lista.remove(0);
        for (int i = 0; i < lista.size() - 1; i++) {
            if (lista.get(i).peso < lista.get(i + 1).peso) {
               
                if (lista.get(i).iq > lista.get(i + 1).iq) {
                    System.out.println(lista.get(i).n); 
                   
                }       
            }
           
        }

    }

    public static void main(String[] args) throws IOException {
        ArrayList<Elefantes> e = new ArrayList<>();
        int inputCount = 1;
        Main m = new Main();
        String line;
        StringTokenizer stk;
        BufferedReader scanner = new BufferedReader(new InputStreamReader(System.in));
        while (!(line = scanner.readLine()).equals("")) {
            stk = new StringTokenizer(line, " ");
            Elefantes ele = new Elefantes(Integer.parseInt(stk.nextToken()), Integer.parseInt(stk.nextToken()), inputCount);
            e.add(ele);
            inputCount++;

        }

        m.clasificar(e);
        scanner.close();
    }

}