PAT Basic 1028. 人口普查
1. 题目描述:
某城镇进行人口普查,得到了全体居民的生日。现请你写个程序,找出镇上最年长和最年轻的人。
这里确保每个输入的日期都是合法的,但不一定是合理的——假设已知镇上没有超过 200 岁的老人,而今天是 2014 年 9 月 6 日,所以超过 200 岁的生日和未出生的生日都是不合理的,应该被过滤掉。
2. 输入格式:
输入在第一行给出正整数 \(N\),取值在\((0,10^5]\);随后 \(N\) 行,每行给出 1 个人的姓名(由不超过 5 个英文字母组成的字符串)、以及按 yyyy/mm/dd
(即年/月/日)格式给出的生日。题目保证最年长和最年轻的人没有并列。
3. 输出格式:
在一行中顺序输出有效生日的个数、最年长人和最年轻人的姓名,其间以空格分隔。
4. 输入样例:
5
John 2001/05/12
Tom 1814/09/06
Ann 2121/01/30
James 1814/09/05
Steve 1967/11/20
5. 输出样例:
3 Tom John
6. 性能要求:
Code Size Limit
16 KB
Time Limit
200 ms
Memory Limit
64 MB
思路:
定义一个结构体存储每个人的姓名和生日信息,这里将生日作为整型存储,方便进行比较,用qsort()库函数进行排序。另外定义了两个宏用作生日上下限。
My Code:
#include <stdio.h>
#include <stdlib.h>
#define LEAST_BRITH 18140906
#define MAX_BRITH 20140906
int cmp(const void* a, const void* b);
typedef struct birthday
{
char name[6];
int year;
int month;
int day;
} BIRTH;
int main(void)
{
int peopleNum = 0, count = 0, i;
BIRTH * pt;
BIRTH temp;
int tempBirth;
scanf("%d", &peopleNum);
pt = (BIRTH *)malloc(sizeof(BIRTH) * peopleNum);
for(i=0; i<peopleNum; i++)
{
scanf("%s %d/%d/%d", temp.name, &temp.year, &temp.month, &temp.day);
tempBirth = temp.year*10000 + temp.month * 100 + temp.day;
if(tempBirth >= LEAST_BRITH && tempBirth <= MAX_BRITH)
{
pt[count] = temp;
count++;
}
}
//void qsort(void *base, size_t nitems, size_t size, int (*compar)(const void *, const void*))
qsort(pt, count, sizeof(BIRTH), cmp);
if(count)
printf("%d %s %s\n", count, pt[0].name, pt[count-1].name);
else
printf("0\n"); //first submit didn't treat here, testpoint3 reject for it include 0 valid birth.
free(pt);
return 0;
}
int cmp(const void* a, const void* b)
{
BIRTH * left = (BIRTH *)a;
BIRTH * right = (BIRTH *)b;
int leftBirth, rightBirth;
leftBirth = left->year*10000 + left->month * 100 + left->day;
rightBirth = right->year*10000 + right->month * 100 + right->day;
return leftBirth - rightBirth;
}
标签:PAT,int,1028,month,BIRTH,Basic,生日,人口普查
From: https://www.cnblogs.com/tacticKing/p/17212456.html