zoukankan      html  css  js  c++  java
  • 1028. List Sorting

    1028. List Sorting (25)

    时间限制
    200 ms
    内存限制
    65536 kB
    代码长度限制
    16000 B
    判题程序
    Standard
    作者
    CHEN, Yue

    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
    3 1
    000007 James 85
    000010 Amy 90
    000001 Zoe 60
    
    Sample Output 1
    000001 Zoe 60
    000007 James 85
    000010 Amy 90
    
    Sample Input 2
    4 2
    000007 James 85
    000010 Amy 90
    000001 Zoe 60
    000002 James 98
    
    Sample Output 2
    000010 Amy 90
    000002 James 98
    000007 James 85
    000001 Zoe 60
    
    Sample Input 3
    4 3
    000007 James 85
    000010 Amy 90
    000001 Zoe 60
    000002 James 90
    
    Sample Output 3
    000001 Zoe 60
    000007 James 85
    000002 James 90
    000010 Amy 90
     1 #include<stdio.h>
     2 #include<math.h>
     3 #include<stdlib.h>
     4 #include<string.h>
     5 #include<algorithm>
     6 using namespace std;
     7 
     8 struct stu
     9 {
    10     char id[10];
    11     char name[10];
    12     int grade;
    13 }a[100010];
    14 
    15 bool cmp1(stu x, stu y)
    16 {
    17     return strcmp(x.id, y.id) < 0;
    18 }
    19 
    20 
    21 bool cmp2(stu x, stu y)
    22 {
    23     if(strcmp(x.name, y.name) != 0)
    24         return strcmp(x.name, y.name) < 0;
    25     else
    26         return strcmp(x.id, y.id) < 0;
    27 }
    28 
    29 bool cmp3(stu x, stu y)
    30 {
    31     if(x.grade != y.grade)
    32         return x.grade < y.grade;
    33     else
    34         return strcmp(x.id, y.id) < 0;
    35 }
    36 
    37 int main()
    38 {
    39     int i, n, c;
    40     scanf("%d%d", &n, &c);
    41     for(i = 0; i < n; i++)
    42     {
    43         scanf("%s%s%d", a[i].id, a[i].name, &a[i].grade);
    44     }
    45     if(c == 1)
    46         sort(a, a + n, cmp1);
    47     else if(c == 2)
    48         sort(a, a + n, cmp2);
    49     else if(c== 3)
    50         sort(a, a + n, cmp3);
    51     for(i = 0; i < n; i++)
    52     {
    53         printf("%s %s %d
    ", a[i].id, a[i].name, a[i].grade);
    54     }
    55     return 0;
    56 }
  • 相关阅读:
    自动化测试selenium教程
    Java开发.gitignore文件包含.iml,.log的看法
    基于接口设计与编程
    搭建大众点评CAT监控平台
    正确的打日志姿势
    【每天一条Linux指令-Day1】kill掉多个mysql的进程
    一道SQL面试题——表行列数据转换(表转置)
    @SuppressWarnings注解用法详解
    Spring IoC的底层技术支持——Java反射机制
    出现java.lang.NoSuchMethodError错误的原因
  • 原文地址:https://www.cnblogs.com/yomman/p/4280689.html
Copyright © 2011-2022 走看看