Computer Science, asked by kavyadazzling25, 1 month ago

Write an algorithm to find the list of which
student IDs should be in the first group,
followed by the student IDs which should be in
the second group as per the teacher's
instructions ​

Answers

Answered by himani1223
12

Mid sem marks of a particular subject is announced , since you are curious in knowing your position in class so you decided to make a rank list . You are given the name , scholoar number and marks of every student in your class. You have to come up with accurate rank list i.e student having maximum marks at the top and if two students are having same marks then the student having lexicographically smaller name comes first , if both name and marks of the student collide then student having smaller scholar number comes first.

Input:

First line of input contains N - Total number of students in class

Next N line contains name of student , scholar number and marks scored in exam .

Output:

Print the ranklist of students as explained above.

Constraints

1 <= N <= 1000

1 <= length of name <= 10

1 <= scholar number <= 1000

0 <= marks <= 30

Similar questions