P5741 【深基7.例10】旗鼓相当的对手 - 加强版 - 洛谷 | 计算机科学教育新生态
【深基7.例10】旗鼓相当的对手 - 加强版
题目描述
现有 N(N<=1000)名同学参加了期末考试,并且获得了每名同学的信息:姓名(不超过8个字符的字符串,没有空格)、语文、数学、英语成绩(均为不超过 150的自然数)。如果某对学生 <i,j> 的每一科成绩的分差都不大于 5,且总分分差不大于 10,那么这对学生就是“旗鼓相当的对手”。现在我们想知道这些同学中,哪些是“旗鼓相当的对手”?请输出他们的姓名。
所有人的姓名是按照字典序给出的,输出时也应该按照字典序输出所有对手组合。也就是说,这对组合的第一个名字的字典序应该小于第二个;如果两个组合中第一个名字不一样,则第一个名字字典序小的先输出;如果两个组合的第一个名字一样但第二个名字不同,则第二个名字字典序小的先输出。
输入格式
第一行输入一个正整数N,表示学生个数。
第二行开始,往下 N行,对于每一行首先先输入一个字符串表示学生姓名,再输入三个自然数表示语文、数学、英语的成绩。均用空格相隔。
输出格式
输出若干行,每行两个以空格隔开的字符串,表示一组旗鼓相当的对手。注意题目描述中的输出格式。
样例 #1
样例输入
3
fafa 90 90 90
lxl 95 85 90
senpai 100 80 91
样例输出
fafa lxl
lxl senpai
提示
数据保证,1 <= N <= 1000,姓名为长度不超过 8 的字符串,语文、数学、英语成绩均为不超过 150的自然数。
代码区:
#include<stdio.h>
#include<string.h>
#include<math.h>
#include<stdlib.h>
#define N 2000
struct student{
char name[10];
int English;
int Chinese;
int Math;
int Total;
};
int main(){
int n;
scanf("%d",&n);
struct student *stu=(struct student*)malloc(n*sizeof(struct student));
for(int i=0;i<n;i++){
scanf("%s%d%d%d",stu[i].name,&stu[i].English,&stu[i].Chinese,&stu[i].Math);
stu[i].Total=stu[i].Chinese+stu[i].English+stu[i].Math;
}
for(int countindex = 0; countindex < n - 1; countindex++){
for(int i = countindex + 1; i < n; i++){
if(abs(stu[i].Chinese - stu[countindex].Chinese) <= 5 &&
abs(stu[i].English - stu[countindex].English) <= 5 &&
abs(stu[i].Math - stu[countindex].Math) <= 5 &&
abs(stu[i].Total - stu[countindex].Total) <= 10){
if(strcmp(stu[countindex].name, stu[i].name) < 0){//注意名字的排序
printf("%s %s\n", stu[countindex].name, stu[i].name);
} else{
printf("%s %s\n", stu[i].name, stu[countindex].name);
}
}
}
}
return 0;
}
欢迎各位读者提出意见。
(菜菜洛谷奋斗小日记)
标签:P5741,输出,洛谷,struct,int,旗鼓相当,include,字典 From: https://blog.csdn.net/2402_88149600/article/details/143581213