Bootstrap

天梯赛 L2-030 冰岛人 (25 分)

天梯赛 L2-030 冰岛人 (25 分)


思路分析

看见这种题目,建议直接放弃。。。
仅打卡使用,本人不会做= =

参考代码

#include <iostream>
#include <string>
#include <map>

using namespace std;

struct Peoson {
   
	char sex;
	string father;
};

map<string, Peoson> people;

int judge(string a, string b) {
   
	int i = 1, j;
	for (string A = a; !A.empty(); A = people[A].father, i++
;