HDU1272 小希的迷宫

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1272
复制代码
#include<iostream>
using namespace std;

const int MAX_VETEX_NUM = 100001;
bool flag[MAX_VETEX_NUM];
int connectedList[MAX_VETEX_NUM];
bool isOk = true;
int nStart,nEnd;

void initConnectedList()
{
    
for (int i = 0; i < MAX_VETEX_NUM; ++i)
    {    
        connectedList[i] 
= i;
        flag[i] 
= false;
    }
}
int findInConnectList(int vetex)
{
    
int pos = vetex;
    
while(pos != connectedList[pos])
       {
        pos 
= connectedList[pos];
    }
    
return pos;
}
int countListNum()
{
    
int count = 0;
    
for (int i = 0; i < MAX_VETEX_NUM; ++i)
    {
        
if (flag[i] == true)
        {
            
if (findInConnectList(i) == i)
            {
                
++count;
            }
        }
    }
    
return count;
}

void process()
{
    
if( findInConnectList(nStart) == findInConnectList(nEnd))
    {
           isOk 
= false;
           
return;
    }
    
if( findInConnectList(nStart) == nStart && findInConnectList(nEnd) == nEnd)
       {
        connectedList[nEnd] 
= nStart;
    }    
    
else if(findInConnectList(nStart) == nStart)
       {
        connectedList[nStart] 
= findInConnectList(nEnd);
    }
    
else 
       {
        connectedList[nEnd] 
= findInConnectList(nStart);
    }
    flag[nStart] 
= true;
    flag[nEnd] 
= true;
}
int main()
{
    
while(cin >> nStart >> nEnd)
    {
           
if(nStart == -1 && nEnd == -1break;
           
if(nStart || nEnd)
           {
            isOk 
= true;
            memset(flag, 
false ,sizeof(flag));
            initConnectedList();
            process();
            
while(cin >> nStart >> nEnd,nStart || nEnd)
            {
               
if(isOk == true 
               {
                   process();
               }
               }
            
if(isOk == true// 如果没有回环,也有可能在不同连通分量中
            {
                
int count = 0
                count 
= countListNum();
                 
if(count>1)
                  {
                    isOk 
= false;
                }
            }
           }
           
else
           {
            isOk 
= true;
           }
           
if(isOk == false)
        {
            cout 
<< "No" << endl;
        }
           
else
        {
            cout 
<< "Yes" << endl;
        }
    }
    
return 0;
}
复制代码

posted on   Phinecos(洞庭散人)  阅读(1986)  评论(1编辑  收藏  举报

编辑推荐:
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
阅读排行:
· 周边上新:园子的第一款马克杯温暖上架
· Open-Sora 2.0 重磅开源!
· .NET周刊【3月第1期 2025-03-02】
· 分享 3 个 .NET 开源的文件压缩处理库,助力快速实现文件压缩解压功能!
· [AI/GPT/综述] AI Agent的设计模式综述

导航

统计

点击右上角即可分享
微信分享提示