É o seguinte, a questão é essa: http://br.spoj.com/problems/ESTAGIO/
Apesar de quando compilado aqui no meu computador ele aparece estar funcionando corretamente, o sistema não aceita dizendo que a resposta está errada.
#include <iostream>
using namespace std;
int main(){
int N,N_Melhores=0, Melhor_Aluno[N_Melhores], C, M, Melhor_Media = 0, k=0, Turma = 1;
while(cin >> N, N!=0){
N_Melhores=0;
Melhor_Media=0;
k=0;
for(int i=0; i<N; i++){
cin >> C >> M;
if(M > Melhor_Media){
k=0;
N_Melhores = 1;
Melhor_Aluno[k] = C;
Melhor_Media = M;
}
else if(M == Melhor_Media){
k++;
N_Melhores++;
Melhor_Aluno[k] = C;
}
}
cout << "Turma " << Turma << endl;
for(int i=0; i<N_Melhores; i++){
cout << Melhor_Aluno << " ";
}
cout << endl << endl;
}
}