zoukankan      html  css  js  c++  java
  • poj 2021

    Relative Relatives
    Time Limit: 1000MS   Memory Limit: 30000K
    Total Submissions: 3886   Accepted: 1723

    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
    

    Source

     

     

     1 #include <iostream>
     2 #include <cstdio>
     3 #include <algorithm>
     4 #include <cstring>
     5 #include <set>
     6 #include <map>
     7 #include <string>
     8 using namespace std;
     9 #define  ll long long
    10 const int N  = 500;
    11 #define  lowbit(x) x&(-x)
    12 struct Ma{
    13     string fa,me;
    14     int age,cha;
    15 }ma[N];
    16 map<string,int>mp;
    17 string  s = "Ted";
    18 //mp["Ted"] = 100;
    19 int t,n;
    20 void dfs(string s){
    21     for(int i =0;i<n;i++){
    22         if(ma[i].age == -1){
    23             //cout<<ma[i].me<<endl;
    24             if(ma[i].fa==s){
    25                 ma[i].age = mp[s] - ma[i].cha;    
    26                 mp[ma[i].me] = ma[i].age;
    27                 dfs(ma[i].me);
    28               //cout<<ma[i].me<<" "<<ma[i].age;                
    29             }
    30         }
    31     }
    32     return  ;
    33 }
    34 bool cmp(Ma a,Ma b){
    35     if(a.age!=b.age) return a.age>b.age;
    36     return a.me<b.me;//string  可以直接比较,不加这行代码会WA
    37 }
    38 int  main()
    39 {
    40     scanf("%d",&t);
    41     int  x= t;
    42     mp["Ted"] = 100;
    43     while(t--){
    44         scanf("%d",&n);
    45         for(int i = 0;i<n;i++){
    46             cin>>ma[i].fa>>ma[i].me;
    47             scanf("%d",&ma[i].cha);
    48             ma[i].age = -1;
    49         }
    50         dfs(s);
    51         sort(ma,ma+n,cmp);
    52         printf("DATASET %d
    ",x-t);
    53         for(int i =0 ;i<n ;i++){
    54             cout<<ma[i].me<<" "<<ma[i].age<<endl;
    55         }
    56     }
    57     return  0;
    58 }
  • 相关阅读:
    Windows控制台程序“选定模式”的问题
    落网的音乐很好听的,你造么?不能下载啊,怎么破?
    记一次复杂的正则匹配——匹配但不包含
    判断浏览器是否为IE内核的最简单的方法
    Nodejs发送Post请求时出现socket hang up错误的解决办法
    Windows下通过bat脚本实现自动上传文件到ftp服务器
    jQuery对html进行Encode和Decode
    scala学习笔记:理解类继承
    scala学习笔记:理解lazy值
    scala学习笔记:match表达式
  • 原文地址:https://www.cnblogs.com/tingtin/p/9906187.html
Copyright © 2011-2022 走看看