zoukankan      html  css  js  c++  java
  • poj 2021 Relative Relatives(典型数据结构题)

    Relative Relatives
    Time Limit: 1000MS   Memory Limit: 30000K
    Total Submissions: 3244   Accepted: 1405

    Description

    Today is Ted's 100th birthday. A few weeks ago, you were selected by the family to contact all of Ted's descendants and organize a surprise party. To make this task easier, you created an age-prioritized list of everyone descended from Ted. Descendants of the same age are listed in dictionary order.

    The only materials you had to aid you were birth certificates. Oddly enough, these birth certificates were not dated. They simply listed the father's name, the child's name, and the father's exact age when the baby was born.

    Input

    Input to this problem will begin with line containing a single integer n indicating the number of data sets. Each data set will be formatted according to the following description.

    A single data set has 2 components:
    1. Descendant Count - A line containing a single integer X (where 0 < X < 100) indicating the number of Ted's descendants.
    2. Birth Certificate List - Data for X birth certificates, with one certificate's data per line. Each certificate's data will be of the format "FNAME CNAME FAGE" where:
      • FNAME is the father's name.
      • CNAME is the child's name.
      • FAGE is the integer age of the father on the date of CNAMEs birth.

    Note:
    • Names are unique identifiers of individuals and contain no embedded white space.
    • All of Ted's descendants share Ted's birthday. Therefore, the age difference between any two is an integer number of years. (For those of you that are really picky, assume they were all born at the exact same hour, minute, second, etc... of their birth year.)
    • You have a birth certificate for all of Ted's descendants (a complete collection).

    Output

    For each data set, there will be X+1 lines of output. The first will read, "DATASET Y", where Y is 1 for the first data set, 2 for the second, etc. The subsequent X lines constitute your age-prioritized list of Ted's descendants along with their ages using the format "NAME AGE". Descendants of the same age will be listed in dictionary order.

    Sample Input

    2
    1
    Ted Bill 25
    4
    Ray James 40
    James Beelzebub 17
    Ray Mark 75
    Ted Ray 20
    

    Sample Output

    DATASET 1
    Bill 75
    DATASET 2
    Ray 80
    James 40
    Beelzebub 23
    Mark 5

    #include <iostream>
    #include <map>
    #include <list>
    #include <algorithm>
    using namespace std;
    
    //定义父子关系,键为父亲名字,值为儿子名字
    multimap<string,string > relation;
    //定义年龄图,键为名字,值为与父亲年龄的差值
    map<string,int> age_map;
    
    map<string,int> name_age;
    
    //定义一个人,有名字和年龄
    typedef struct
    {
        string name;
        int age;
    }Person;
    
    void update(string name)
    {
        int count;
        string cname;
        int age;
         //针对两个图分别做一个迭代器
        multimap<string,string >::iterator ire;
        map<string,int>::iterator iage;
        count = relation.count(name);
        if(count==0)return;
        ire = relation.find(name);
        age = name_age.find(name)->second;
        for(int c = 0; c < count; c++,ire++)
        {
            cname = ire->second;
            iage = age_map.find(cname);
            name_age.insert(make_pair(cname,age-(iage->second)));
            update(cname);
        }
    }
    
    int cmp(const void *a,const void *b)
    {
        Person *x = (Person*)a;
        Person *y = (Person*)b;
        if(x->age<y->age)return 1;
        else if(x->age>y->age)return -1;
        else return x->name.compare(y->name);
    }
    
    int main()
    {
        Person person[110];
        int n;//测试数目
        int X;//后代数目
        int to_age;//与父亲年龄的差值
        int count;
        int k,length;
        //父亲的名字,孩子的名字
        string fname,name;
        cin>>n;
        for(int i = 1; i <= n;i++)
        {
            k = 0;
            cin>>X;
            relation.clear();
            age_map.clear();
            name_age.clear();
            while(X--)
            {
                cin>>fname>>name>>to_age;
                relation.insert(make_pair(fname,name));//父子关系插入多键映射表
                age_map.insert(make_pair(name,to_age));//名字和年龄差插入age_map中
            }
            name_age.insert(make_pair("Ted",100));
            update("Ted");
            for(map<string,int>::iterator it = name_age.begin(); it != name_age.end(); ++it)
            {
                person[k].name = it->first;
                person[k].age = it->second;
                k++;
            }
            qsort(person,k,sizeof(person[0]),cmp);
            cout<<"DATASET "<<i<<endl;
            for(int m = 1; m < k; m++)
            cout<<person[m].name<<" "<<person[m].age<<endl;
    
        }
        return 0;
    }
  • 相关阅读:
    浅析软件开发项目的前期沟通工作
    .net core 和 WPF 开发升讯威在线客服系统:实现对 IE8 的完全完美支持 【干货】
    产品的定价策略(一):想通过产品挣钱,首先你产品的目标客户得不差钱
    .net core 和 WPF 开发升讯威在线客服系统:使用线程安全的 BlockingCollection 实现高性能的数据处理
    .net core 和 WPF 开发升讯威在线客服系统:使用 TCP协议 实现稳定的客服端
    .net core 和 WPF 开发升讯威在线客服系统:使用 WebSocket 实现访客端通信
    Centos上配置两层nginx转发,把请求转发到外网
    真实字节二面:什么是伪共享?
    关于MVCC,我之前写错了,这次我改好了!
    从家庭主妇到格力老总,董明珠的大女主逆袭之路
  • 原文地址:https://www.cnblogs.com/newpanderking/p/2677814.html
Copyright © 2011-2022 走看看