码迷,mamicode.com
首页 > 其他好文 > 详细

题解 P2814 【家谱】

时间:2019-05-18 09:51:28      阅读:95      评论:0      收藏:0      [点我收藏+]

标签:find   end   int   namespace   flag   cin   using   lag   char   

map版本映射并查集

注意其初始化其祖先字符串是其本身

#include<bits/stdc++.h>
using namespace std;
map<string,string> p;
char flag;
string s,tmp;
string find(string x){
    if (p[x]==x) return x;
    return p[x]=find(p[x]);
}
int main(){
    cin>>flag;
    while (flag!='$'){
        cin>>s;
        if (flag=='#') {
            if(p[s]=="") p[s]=s;//相当于一个并查集初始化的过程 
            tmp=s;  
        }
        if (flag=='+') p[s]=tmp;
        if (flag=='?') cout<<s<<" "<<p[find(s)]<<endl;
        cin>>flag; 
    }
    return 0;
} 

题解 P2814 【家谱】

标签:find   end   int   namespace   flag   cin   using   lag   char   

原文地址:https://www.cnblogs.com/Hiraeth-dh/p/10884482.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!