首页 > 其他 > 详细

P2814 家谱【map型的并查集】

时间:2020-06-28 22:29:49      阅读:71      评论:0      收藏:0      [点我收藏+]

题目

https://www.luogu.com.cn/problem/P2814

技术分享图片

 

 思路

我们跨一使用string类型的map直接进行并查集!

注意这种形式的map的初始化!!

代码

#include<iostream>
#include<cstdio>
#include<string>
#include<cstring>
#include<map>
using namespace std;
map<string, string>list;
string find(string x)
{
    if (x == list[x])return x;
    return list[x] = find(list[x]);
}
int main()
{
    string temp, father="";
    while (1)
    {
        cin >> temp;
        if (temp == "$")break;
        if (temp[0] == #) { father = temp.substr(1, temp.length() - 1);  if(list[temp.substr(1, temp.length() - 1)]=="")list[temp.substr(1, temp.length() - 1)] = father;}
        if(temp[0]==+) list[temp.substr(1, temp.length() - 1)] = father;
        if (temp[0] == ?) { cout << temp.substr(1, temp.length() - 1) << <<find(temp.substr(1, temp.length() - 1)) << endl; }
    }


}

 

P2814 家谱【map型的并查集】

原文:https://www.cnblogs.com/Jason66661010/p/13205244.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!