HDU-3786 题解 搜索

HDU-3786 题解

找出直系亲属

题目大意

找是否直系亲属,直系亲属关系

Time: 1000 ms

Memory: 32768 kB

解题思路及分析

搜索

注意父子都要搜,一开始只搜了父亲WA了好几发

孩子就的不额外写了,搜不到父亲,直接反过来搜

AC代码

#include <bits/stdc++.h>
using namespace std;
typedef long long llong;

int n, m;
vector<char> par[300];
bool vis[300];

int bfs(char s, char t)
{
    queue<char> q;
    queue<int> de;
    q.push(s);
    de.push(0);
    while (!q.empty())
    {
        char x = q.front();
        int d = de.front();
        q.pop();
        de.pop();
        if (x == t)
        {
            return d;
        }
        for (int i = 0; i < par[x].size(); i++)
        {
            if (!vis[par[x][i]])
            {
                vis[par[x][i]] = 1;
                q.push(par[x][i]);
                de.push(d + 1);
            }
        }
    }
    return -1;
}

int main()
{
    while (~scanf("%d%d", &n, &m) && n && m)
    {
        for (int i = 'A'; i <= 'Z'; i++)
        {
            par[i].clear();
        }
        char s[10];
        for (int i = 0; i < n; i++)
        {
            scanf("%s", s);
            if (s[1] != '-')
                par[s[0]].push_back(s[1]);
            if (s[2] != '-')
                par[s[0]].push_back(s[2]);
        }
        while (m--)
        {
            bool f = 0;
            scanf("%s", s);
            memset(vis, 0, sizeof(vis));
            int ans = bfs(s[0], s[1]);
            if (ans == -1)
            {
                memset(vis, 0, sizeof(vis));
                ans = bfs(s[1], s[0]);
                f = 1;
            }
            if (ans == -1)
            {
                printf("-\n");
            }
            else if (ans == 1)
            {
                printf(f ? "parent\n" : "child\n");
            }
            else if (ans == 2)
            {
                printf(f ? "grandparent\n" : "grandchild\n");
            }
            else
            {
                for (int i = 2; i < ans; i++)
                {
                    printf("great-");
                }
                printf(f ? "grandparent\n" : "grandchild\n");
            }
        }
    }    
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值