(SPOJ) 1734 - Quem vai ser reprovado - Solução

import java.io.*;
import java.util.*;

class Main {
    class Aluno {
        public String nome;
        public int nota;
    }
   
    public static void main(String[] args) throws NumberFormatException, IOException {
        Main processando = new Main();
        processando.processa();
       
        System.exit(0);
    }
   
    void processa() throws NumberFormatException, IOException {
        String line = "";
       
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

        int contador = 0;       
        while((line = br.readLine()) != null) {
            StringTokenizer tokenizer = new StringTokenizer(line);
            int qteAlunos = Integer.parseInt(tokenizer.nextToken());

            contador++;
            System.out.println("Instancia " + contador);
           
            Aluno[] notasAlunos = new Aluno[qteAlunos];
           
            // precisa fazer o new em cada aluno: Aluno[0] = new Aluno para classe
            for (int i = 0; i < qteAlunos; i++) {
                notasAlunos[i] = new Aluno();
            }
           
            for (int i = 0; i < qteAlunos; i++) {
                line = br.readLine();
                tokenizer = new StringTokenizer(line);
                notasAlunos[i].nome = String.valueOf(tokenizer.nextToken());
                notasAlunos[i].nota = Integer.parseInt(tokenizer.nextToken());
            }
           
            //Sorting
            Arrays.sort(notasAlunos, 0, qteAlunos, new Comparator<Aluno>() {
                @Override
                public int compare(Aluno  a1, Aluno  a2)
                {
                    if (a1.nota < a2.nota) {
                        return 1;
                    }
                    else if (a1.nota == a2.nota) {
                        return a1.nome.compareTo(a2.nome);
                    }
                    else {
                        return -1;
                    }
                }
            });
           
            System.out.println(notasAlunos[qteAlunos-1].nome);
                                             
            System.out.println();
        }
                   
        return;
    }
}

Comments

Popular posts from this blog

(Coderbyte) Powers of Two - Solução

(Coderbyte) Dash Insert II - Solução

(CoderByte) Number Search - Solução