HDU1325-并查集

Is It A Tree?

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 30927    Accepted Submission(s): 7056


 

Problem Description

A tree is a well-known data structure that is either empty (null, void, nothing) or is a set of one or more nodes connected by directed edges between nodes satisfying the following properties.
There is exactly one node, called the root, to which no directed edges point.

Every node except the root has exactly one edge pointing to it.

There is a unique sequence of directed edges from the root to each node.

For example, consider the illustrations below, in which nodes are represented by circles and edges are represented by lines with arrowheads. The first two of these are trees, but the last is not.



In this problem you will be given several descriptions of collections of nodes connected by directed edges. For each of these you are to determine if the collection satisfies the definition of a tree or not.

 

 

Input

The input will consist of a sequence of descriptions (test cases) followed by a pair of negative integers. Each test case will consist of a sequence of edge descriptions followed by a pair of zeroes Each edge description will consist of a pair of integers; the first integer identifies the node from which the edge begins, and the second integer identifies the node to which the edge is directed. Node numbers will always be greater than zero.

 

 

Output

For each test case display the line ``Case k is a tree." or the line ``Case k is not a tree.", where k corresponds to the test case number (they are sequentially numbered starting with 1).

 

 

Sample Input

 

6 8 5 3 5 2 6 4 5 6 0 0 8 1 7 3 6 2 8 9 7 5 7 4 7 8 7 6 0 0 3 8 6 8 6 4 5 3 5 6 5 2 0 0 -1 -1

 

 

Sample Output

 

Case 1 is a tree. Case 2 is a tree. Case 3 is not a tree.

 

 

Source

North Central North America 1997

题意 :和hdu1272的题意差不多,就是变成了有向图,考虑的有点多

坑点:是以小于0结束代码。。。还有判断环的方式改了一下

思路:并查集就是了

AC代码:

#include <iostream>
#include <cstring>
#include <cstdio>
#include <algorithm>
using namespace std;
const int maxn=100000+10;
int pre[maxn];
bool vis[maxn],ans;
int find(int x)
{
    if (x==pre[x])
        return x;
    return find(pre[x]);
}
void unite(int x,int y)
{
    int m,n;
    n=find(x);
    m=find(y);
//    printf("%d->%d\n",x,n);
//    printf("%d-->%d\n",y,m);
    if (n!=m&&m==y)  //第一个判断是不是环,第二个判断自己的子节点有没有爸爸,如果还没有(就是爸爸还是自己本身),就记录
        pre[m]=n;
    else ans=false;  //否则就错了
    return ; 
}
int main()
{
    int n,m,i,k,sum;
    k=1;
    while (scanf("%d%d",&n,&m)!=EOF)
        {
            if (n<0&&m<0)   //坑点
                break;
            if (n==0&&m==0)
                {
                    printf("Case %d is a tree.\n",k++);
                    continue;
                }
            
            for (i=1;i<=maxn;i++)
                {
                    pre[i]=i;
                    vis[i]=false;
                }
            unite(n,m);
            vis[n]=vis[m]=true;
            ans=true;
            while (scanf("%d%d",&n,&m)!=EOF)
                {
                    if (n==0&&m==0)
                        break;
                    unite(n,m);
                    vis[n]=vis[m]=true;
                }
    //        cout<<ans<<endl;
            if (ans==false)
                {
                    printf("Case %d is not a tree.\n",k++);
                    continue;
                }
            sum=0;
            for (i=1;i<maxn;i++)
                {
                    if (vis[i]==true&&pre[i]==i)  //判断根节点有多少个,一棵树只能有一个根节点
                        {
                            sum++;
                    //        cout<<pre[i]<<" "<<i<<endl;
                        }
                    if (sum>1)
                        break;
                }
    //        cout<<sum<<" sum"<<endl;
            if (sum>1)
                printf("Case %d is not a tree.\n",k++);
            else printf("Case %d is a tree.\n",k++);
        }
    return 0;
}
内容概要:本文系统介绍了算术优化算法(AOA)的基本原理、核心思想及Python实现方法,并通过图像分割的实际案例展示了其应用价值。AOA是一种基于种群的元启发式算法,其核心思想来源于四则运算,利用乘除运算进行全局勘探,加减运算进行局部开发,通过数学优化器加速函数(MOA)和数学优化概率(MOP)动态控制搜索过程,在全局探索与局部开发之间实现平衡。文章详细解析了算法的初始化、勘探与开发阶段的更新策略,并提供了完整的Python代码实现,结合Rastrigin函数进行测试验证。进一步地,以Flask框架搭建前后端分离系统,将AOA应用于图像分割任务,展示了其在实际工程中的可行性与高效性。最后,通过收敛速度、寻优精度等指标评估算法性能,并提出自适应参数调整、模型优化和并行计算等改进策略。; 适合人群:具备一定Python编程基础和优化算法基础知识的高校学生、科研人员及工程技术人员,尤其适合从事人工智能、图像处理、智能优化等领域的从业者;; 使用场景及目标:①理解元启发式算法的设计思想与实现机制;②掌握AOA在函数优化、图像分割等实际问题中的建模与求解方法;③学习如何将优化算法集成到Web系统中实现工程化应用;④为算法性能评估与改进提供实践参考; 阅读建议:建议读者结合代码逐行调试,深入理解算法流程中MOA与MOP的作用机制,尝试在不同测试函数上运行算法以观察性能差异,并可进一步扩展图像分割模块,引入更复杂的预处理或后处理技术以提升分割效果。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值