1036. Boys vs Girls

题目链接:http://pat.zju.edu.cn/contests/pat-a-practise/1036

仅仅求最大值与最小值,输入时进行比较久可以了,并且进行记录。没必要使用排序~~~

// 分类排序
// 

#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <string.h>

#include <iostream>
#include <vector>
#include <stack>
#include <queue>
#include <algorithm>
#include <map>
#include <string>

using namespace std;

struct Stu
{
	char name[20];
	char id[20];
	char gender;
	int  grade;
};

vector<Stu> boy, girl;


bool cmpGirl(Stu a, Stu b)
{
	return a.grade>b.grade;
}

bool cmpBoy(Stu a, Stu b)
{
	return a.grade<b.grade;
}


int main()
	{
	#ifdef ONLINE_JUDGE
	#else 
		freopen("E:\\in.txt", "r", stdin);
	#endif 

	int n;
	scanf("%d", &n);
	Stu t;
	while(n-->0)
	{
		scanf("%s %c %s %d", &t.name, &t.gender, &t.id, &t.grade);
		//printf("%s %c %s %d\n", t.name, t.gender, t.id, t.grade);
		if(t.gender == 'F')
		{
			girl.push_back(t);
		}
		else
		{
			boy.push_back(t);
		}
	}

	sort(girl.begin(), girl.end(), cmpGirl);
	sort(boy.begin(), boy.end(), cmpBoy);
	bool flag = true;
	if(girl.size() == 0)
	{
		printf("Absent\n");
		flag = false;
	}
	else
	{
		printf("%s %s\n", girl[0].name, girl[0].id);
	}

	if(boy.size() == 0)
	{
		printf("Absent\n");
		flag = false;
	}
	else
	{
		printf("%s %s\n", boy[0].name, boy[0].id);
	}
	if(flag == false)
	{
		printf("NA\n");
	}
	else
	{
		printf("%d\n", girl[0].grade-boy[0].grade);
	}
	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值