PAT-1028人口普查

用string可以写的很短,不用排序。但是留着了,结构体二级排序。

PAT有一个样例格式错误!牛客网过了

#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <iomanip>
using namespace std;

#define MAX 100000+10
struct People
{
    char name[20];
    int year;
    int month;
    int day;
} people[MAX];

int isLegal(People p)
{
    if (p.year > 1814 && p.year < 2014)
        return 1;
    else if (p.year == 1814)
    {
        if (p.month > 9)
            return 1;
        else if (p.month == 9 && p.day >= 6)
            return 1;
    }
    else if (p.year == 2014)
    {
        if (p.month < 9)
            return 1;
        else if (p.month == 9 && p.day <= 6)
            return 1;
    }
    return 0;
}

int younger(People p1, People p2)
{
    if (p1.year > p2.year )
        return 1;
    else if (p1.year == p2.year && p1.month > p2.month)
        return 1;
    else if (p1.year == p2.year && p1.month == p2.month && p1.day > p2.day)
        return 1;
    return 0;
}

int older(People p1, People p2)
{
    if (p1.year < p2.year )
        return 1;
    else if (p1.year == p2.year && p1.month < p2.month)
        return 1;
    else if (p1.year == p2.year && p1.month == p2.month && p1.day < p2.day)
        return 1;
    return 0;
}
/*
int cmp(const void *a, const void *b)
{
    struct People* c = (People*)a;
    struct People* d = (People*)b;
    if ((*c).year == (*d).year)
    {
        if ((*c).month == (*d).month)
            return (*d).day - (*c).day;
        else
            return (*d).month - (*c).month;
    }
    else
    {
        return (*d).year - (*c).year;
    }
}
*/

int main()
{
    //freopen("in.txt", "r", stdin);
    //freopen("out.txt", "w", stdout);
    int n = 0;
    cin >> n;
    for (int i = 0; i < n; i++)
    {
        scanf("%s", people[i].name);
        scanf("%d/%d/%d", &people[i].year, &people[i].month, &people[i].day);
    }

    //qsort(people, n, sizeof(people[0]), cmp);

    int cnt = 0;
    People youngpeople= {"", 0, 0, 0}, oldpeople= {"", 9999, 9999, 9999};
    for (int i = 0; i < n; i++)
    {
        if (isLegal(people[i]))
        {
            if (older(people[i], oldpeople))
                oldpeople = people[i];
            if (younger(people[i], youngpeople))
                youngpeople = people[i];
            cnt++;
        }
    }

    cout << cnt << " " << oldpeople.name << " " << youngpeople.name;
    return 0;
}


  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 3
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值