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.
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:
Note:
A single data set has 2 components:
- Descendant Count - A line containing a single integer X (where 0 < X < 100) indicating the number of Ted's descendants.
- 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\n",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 }
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· 分享一个免费、快速、无限量使用的满血 DeepSeek R1 模型,支持深度思考和联网搜索!
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· ollama系列01:轻松3步本地部署deepseek,普通电脑可用
· 25岁的心里话
· 按钮权限的设计及实现