(SPOJ) 841 - Estágio - Solução 2

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

class Main {
    class Aluno {
        public int 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());

            if (qteAlunos == 0) {
                return;
            }
           
            contador++;
            System.out.println("Turma " + 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 = Integer.parseInt(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 0;
                    }
                    else {
                        return 1;
                    }
                }
            });
           
            int maior = notasAlunos[qteAlunos-1].nota;
            for (int i = 0; i < qteAlunos; i++) {
                if (maior == notasAlunos[i].nota) {
                    System.out.print(notasAlunos[i].nome + " ");               
                }
            }
                                             
            System.out.println("\n");
        }
                   
        return;
    }
}

Comments

Popular posts from this blog

(Coderbyte) Powers of Two - Solução

(Coderbyte) Dash Insert II - Solução

(CoderByte) Number Search - Solução