人类学研究对于家族很感兴趣,于是研究人员搜集了一些家族的家谱进行研究。实验中,使用计算机处理家谱。为了实现这个目的,研究人员将家谱转换为文本文件。下面为家谱文本文件的实例:
John Robert Frank Andrew Nancy David家谱文本文件中,每一行包含一个人的名字。第一行中的名字是这个家族最早的祖先。家谱仅包含最早祖先的后代,而他们的丈夫或妻子不出现在家谱中。每个人的子女比父母多缩进2个空格。以上述家谱文本文件为例,John这个家族最早的祖先,他有两个子女Robert和Nancy,Robert有两个子女Frank和Andrew,Nancy只有一个子女David。
在实验中,研究人员还收集了家庭文件,并提取了家谱中有关两个人关系的陈述语句。下面为家谱中关系的陈述语句实例:
John is the parent of Robert Robert is a sibling of Nancy David is a descendant of Robert研究人员需要判断每个陈述语句是真还是假,请编写程序帮助研究人员判断。
输入首先给出2个正整数NN(2\le N\le 1002≤N≤100)和MM(\le 100≤100),其中NN为家谱中名字的数量,MM为家谱中陈述语句的数量,输入的每行不超过70个字符。
名字的字符串由不超过10个英文字母组成。在家谱中的第一行给出的名字前没有缩进空格。家谱中的其他名字至少缩进2个空格,即他们是家谱中最早祖先(第一行给出的名字)的后代,且如果家谱中一个名字前缩进kk个空格,则下一行中名字至多缩进k+2k+2个空格。
在一个家谱中同样的名字不会出现两次,且家谱中没有出现的名字不会出现在陈述语句中。每句陈述语句格式如下,其中X和Y为家谱中的不同名字:
X is a child of Y X is the parent of Y X is a sibling of Y X is a descendant of Y X is an ancestor of Y对于测试用例中的每句陈述语句,在一行中输出True,如果陈述为真,或False,如果陈述为假。
解题思路:用map<string,string>来记录人之间的关系,用一个数组来记录和更新每层的人名
#include <iostream> #include <cstdio> #include <string> #include <cstring> #include <algorithm> #include <cmath> #include <queue> #include <vector> #include <set> #include <stack> #include <map> #include <climits> using namespace std; #define LL long long const int INF=0x3f3f3f3f; string x[110]; map<string,string>f; string s; int main() { int n,m; while(~scanf("%d %d",&n,&m)) { getchar(); for(int i=1;i<=n;i++) { getline(cin,s); int cnt=0,j=0; while(s[j]==' ') cnt++,j++; if(!cnt) { f[s]=""; x[0]=s; } else { s=s.substr(cnt); f[s]=x[cnt/2-1]; x[cnt/2]=s; } } while(m--) { string a,b,c,d; cin>>a>>d>>d>>b>>d>>c; int flag=1; if(b[0]=='c') { if(f[a]!=c) flag=0; } else if(b[0]=='p') { if(f[c]!=a) flag=0; } else if(b[0]=='s') { if(f[a]!=f[c]) flag=0; } else if(b[0]=='a') { while(f[c]!=a&&f[c]!="") c=f[c]; if(f[c]=="") flag=0; } else { while(f[a]!=c&&f[a]!="") a=f[a]; if(f[a]=="") flag=0; } if(flag) printf("True\n"); else printf("False\n"); } } return 0; }