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

B.DongDong认亲戚

时间:2019-06-08 01:13:05      阅读:85      评论:0      收藏:0      [点我收藏+]

标签:string   bit   https   name   space   ace   for   get   cin   

链接:https://ac.nowcoder.com/acm/contest/904/B

题意:

DongDong每年过春节都要回到老家探亲,然而DongDong记性并不好,没法想起谁是谁的亲戚(定义:若A和B是亲戚,B和C是亲戚,那么A和C也是亲戚),她只好求助于会编程的你了。

思路:

并查集模板题。

map记录人。

代码:

#include <bits/stdc++.h>
 
using namespace std;
 
typedef long long LL;
const int MAXN = 2e4 + 10;
const int MOD = 1e9 + 7;
int n, m, k, t;
 
map<string, int> name;
int Fa[MAXN];
 
int GetF(int x)
{
    if (Fa[x] == x)
        return x;
    Fa[x] = GetF(Fa[x]);
    return Fa[x];
}
 
int main()
{
    string s;
    cin >> n >> m;
    for (int i = 1;i <= n;i++)
    {
        Fa[i] = i;
        cin >> s;
        name[s] = i;
    }
    int op;
    string l, r;
    for (int i = 1;i <= n;i++)
    {
        cin >> op >> l >> r;
        if (op == 1)
            Fa[GetF(name[l])] = GetF(name[r]);
        else
        {
            int tl = GetF(name[l]);
            int tr = GetF(name[r]);
            if (tl != tr)
                cout << 0 << endl;
            else
                cout << 1 << endl;
        }
    }
 
    return 0;
}

  

B.DongDong认亲戚

标签:string   bit   https   name   space   ace   for   get   cin   

原文地址:https://www.cnblogs.com/YDDDD/p/10989563.html

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