zoukankan      html  css  js  c++  java
  • 1036 Boys vs Girls

    This time you are asked to tell the difference between the lowest grade of all the male students and the highest grade of all the female students.

    Input Specification:

    Each input file contains one test case. Each case contains a positive integer N, followed by N lines of student information. Each line contains a student's namegenderID and grade, separated by a space, where name and ID are strings of no more than 10 characters with no space, gender is either F (female) or M (male), and grade is an integer between 0 and 100. It is guaranteed that all the grades are distinct.

    Output Specification:

    For each test case, output in 3 lines. The first line gives the name and ID of the female student with the highest grade, and the second line gives that of the male student with the lowest grade. The third line gives the difference grade​F​​−grade​M​​. If one such kind of student is missing, output Absent in the corresponding line, and output NA in the third line instead.

    Sample Input 1:

    3
    Joe M Math990112 89
    Mike M CS991301 100
    Mary F EE990830 95
    
     

    Sample Output 1:

    Mary EE990830
    Joe Math990112
    6
    
     

    Sample Input 2:

    1
    Jean M AA980920 60
    
     

    Sample Output 2:

    Absent
    Jean AA980920
    NA

    题意:

      找出女生的最高成绩和男生的最低成绩,并输出两者之差。

    思路:

      模拟

    Code:

     1 #include <bits/stdc++.h>
     2 
     3 using namespace std;
     4 
     5 struct Stu {
     6     string name;
     7     char gender;
     8     string id;
     9     int grade;
    10 };
    11 
    12 bool cmp1(Stu s1, Stu s2) { return s1.grade < s2.grade; }
    13 
    14 bool cmp2(Stu s1, Stu s2) { return s1.grade > s2.grade; }
    15 
    16 int main() {
    17     int n;
    18     cin >> n;
    19     vector<Stu> male, female;
    20     for (int i = 0; i < n; ++i) {
    21         string name, id;
    22         char gender;
    23         int grade;
    24         cin >> name >> gender >> id >> grade;
    25         if (gender == 'F')
    26             female.push_back({name, gender, id, grade});
    27         else
    28             male.push_back({name, gender, id, grade});
    29     }
    30     sort(female.begin(), female.end(), cmp2);
    31     sort(male.begin(), male.end(), cmp1);
    32     if (female.size() > 0)
    33         cout << female[0].name << " " << female[0].id << endl;
    34     else
    35         cout << "Absent" << endl;
    36     if (male.size() > 0)
    37         cout << male[0].name << " " << male[0].id << endl;
    38     else
    39         cout << "Absent" << endl;
    40     if (female.size() > 0 && male.size() > 0)
    41         cout << female[0].grade - male[0].grade << endl;
    42     else
    43         cout << "NA" << endl;
    44     return 0;
    45 }
  • 相关阅读:
    Iframe和Frame中实现cookie跨域的方法(转载)
    android中拷贝assets下的资源文件到SD卡中(可以超过1M)
    OpenSL ES 查询设备支持的SL Profiles
    NDK开发中的一个HTTP下载实例附带下载进度
    android中配置文件property的用途以及使用<转>
    Eclipse 工程使用相对路径导入Jar包设置
    Android 解压zip文件(支持中文)
    c++实现一个比较两个string类型的版本号的小demo
    linux c++下载http文件并显示进度<转>
    Linux下类似windows下_beginthread和_endthread 的多线程开发
  • 原文地址:https://www.cnblogs.com/h-hkai/p/12876368.html
Copyright © 2011-2022 走看看