1028. List Sorting (25)

电玩女神 2022-05-31 10:24 277阅读 0赞

Excel can sort records according to any column. Now you are supposed to imitate this function.

Input

Each input file contains one test case. For each case, the first line contains two integers N (<=100000) and C, where N is the number of records and C is the column that you are supposed to sort the records with. Then N lines follow, each contains a record of a student. A student’s record consists of his or her distinct ID (a 6-digit number), name (a string with no more than 8 characters without space), and grade (an integer between 0 and 100, inclusive).

Output

For each test case, output the sorting result in N lines. That is, if C = 1 then the records must be sorted in increasing order according to ID’s; if C = 2 then the records must be sorted in non-decreasing order according to names; and if C = 3 then the records must be sorted in non-decreasing order according to grades. If there are several students who have the same name or grade, they must be sorted according to their ID’s in increasing order.

Sample Input 1

  1. 3 1
  2. 000007 James 85
  3. 000010 Amy 90
  4. 000001 Zoe 60

Sample Output 1

  1. 000001 Zoe 60
  2. 000007 James 85
  3. 000010 Amy 90

Sample Input 2

  1. 4 2
  2. 000007 James 85
  3. 000010 Amy 90
  4. 000001 Zoe 60
  5. 000002 James 98

Sample Output 2

  1. 000010 Amy 90
  2. 000002 James 98
  3. 000007 James 85
  4. 000001 Zoe 60

Sample Input 3

  1. 4 3
  2. 000007 James 85
  3. 000010 Amy 90
  4. 000001 Zoe 60
  5. 000002 James 90

Sample Output 3

  1. 000001 Zoe 60
  2. 000007 James 85
  3. 000002 James 90
  4. 000010 Amy 90

题目大意:

Excel可以根据任何列对记录进行排序。现在你的任务是模仿这个函数。
输入:
每个输入文件包含一个测试用例。对于每个测试用例,第一行包含两个整数N(<=100000)和C,N代表记录的数量,C是应该对记录进行排序的列。然后是N行每行包含一个学生记录。一个学生记录包含他或她不同的ID(一个6位数字),姓名(一个不超过8个字符且不包含空格的字符串),和成绩(一个0到100之间的整数)。
输出:
对于每个测试用例,输出排序后的N行结果。也就是说,如果C=1,那么记录必须按照ID的增加顺序进行排序;如果C=2,则记录必须按名字的非递减顺序进行排序;如果C=3,则记录必须按照成绩的非递减顺序排序。如果有几个学生有相同的名字或成绩,他们必须按照ID的递增顺序排序。

代码:

  1. #include<stdio.h>
  2. #include<algorithm>
  3. #include<vector>
  4. #include<string.h>
  5. using namespace std;
  6. struct student
  7. {
  8. char ID[10];
  9. char name[10];
  10. int grade;
  11. };
  12. vector<student> stu;
  13. bool cmp1(student a,student b)
  14. {
  15. return strcmp(a.ID,b.ID)<0;
  16. }
  17. bool cmp2(student a,student b)
  18. {
  19. if(strcmp(a.name,b.name)!=0)
  20. return strcmp(a.name,b.name)<0;
  21. else
  22. return strcmp(a.ID,b.ID)<0;
  23. }
  24. bool cmp3(student a,student b)
  25. {
  26. if(a.grade!=b.grade)
  27. return a.grade<b.grade;
  28. else
  29. return strcmp(a.ID,b.ID)<0;
  30. }
  31. int main()
  32. {
  33. int i,j,n,m,k,t;
  34. student temp;
  35. scanf("%d %d",&n,&k);
  36. for(i=0;i<n;i++)
  37. {
  38. scanf("%s %s %d",temp.ID,temp.name,&temp.grade);
  39. stu.push_back(temp);
  40. }
  41. if(k==1)
  42. {
  43. sort(stu.begin(),stu.end(),cmp1);
  44. }
  45. else if(k==2)
  46. {
  47. sort(stu.begin(),stu.end(),cmp2);
  48. }
  49. else if(k==3)
  50. {
  51. sort(stu.begin(),stu.end(),cmp3);
  52. }
  53. for(i=0;i<stu.size();i++)
  54. {
  55. printf("%s %s %d\n",stu[i].ID,stu[i].name,stu[i].grade);
  56. }
  57. return 0;
  58. }

发表评论

表情:
评论列表 (有 0 条评论,277人围观)

还没有评论,来说两句吧...

相关阅读