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 name, gender, ID 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

代码

#include <iostream>
#include <string>
using namespace std;
int main() {
    int n, maxg = -1, ming = 101,g;
    scanf("%d", &n);
    char sex;
    string name, id, Fname, Fid, Mname, Mid;
    for (int i = 0; i < n; i++) {
        cin >> name >> sex >> id >> g;
        if (sex == 'F'&&g > maxg) {
            Fname = name;
            Fid = id;
            maxg = g;
        }
        if (sex == 'M'&&g < ming) {
            Mname = name;
            Mid = id;
            ming = g;
        }
    }
    if (maxg != -1) cout << Fname << " " << Fid << endl;
    else printf("Absent\n");
    if (ming != 101) cout << Mname << " " << Mid << endl;
    else printf("Absent\n");
    if (maxg != -1 && ming != 101) printf("%d", maxg - ming);
    else printf("NA\n");
    return 0;
}
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

  • rljs by sennchi Timeline of History Part One The Cognitiv...
    sennchi阅读 12,183评论 0 10
  • **2014真题Directions:Read the following text. Choose the be...
    又是夜半惊坐起阅读 13,516评论 0 23
  • 从今日头条看到的新段子——我们总认为,大脑是人体最聪明的器官,然而你想想,这个判断是大脑做出的。忽然想起马...
    L李红艳阅读 2,999评论 0 7

友情链接更多精彩内容