Thrall’s Dream(山东省第四届ACM大学生程序设计竞赛 )

来源:互联网 发布:信息技术网络研修总结 编辑:程序博客网 时间:2024/06/06 10:46

Problem Description

We never paid any heed to the ancient prophecies, like fools we clung to the old hatreds, and fought as we had for generations. Until one day the sky rained fire, and a new enemy came upon us. We stand now upon the brink of destruction, for the Reign of Chaos has come at last.

Thrall, the warchief of the Orcish Horde, all along, he led his tribe live in the fringe of Lordaeron under the human control. In a downpour night, Thrall falls into sleep in a Orc hall at Arathi Highlands, at this moment he heard a voice:

“The sands of time have run out, son of Durotan. The cries of war echo upon the winds, the remnants of the past scar the land which is besieged once again by conflict. Heroes arise to challenge fate, and lead their brethren to battle. As mortal armies rush blindly towards their doom, The Burning Shadow comes to consume us all. You must rally the Horde, and lead your people to their destiny.

I will answer all of your questions in time, young warchief. For now, rally your warriors and prepare to leave this land, cross the sea to the distant land of Kalimdor. We will speak again. ”                                                                                                                            

Thrall believes the prophesy of Blood Raven Medivh. Three days later, He and Grom Hellscream's Warsong Clan meet in the Lordaeron coast to the distant lands of Kalimdor. But the Goblin Zeppelins they take encountered storms in the middle. Thrall and Grom falling to the islands, they want to find each other and then to Kalimdor.

 

For the sake of simplicity, we assume that Thrall and Grom may fall into any islands x and y, only by Thrall to find Grom or by Grom to find Thrall. Give you the map of this island, please judge that Thrall and Gtom can meet?

Input

    There are multiple test case in the input file, first line is a case number T. Each test case will begin with two integers N (0 <= N < 2001) and M (0 <= M < 10001), where N is the number of islands and M is number of portal. Next M lines each line contains two integers a and b, indicated there is a portal in island a that people can go from a to b by this portal. The island numbered from 1 to N.

Output

    For each test case, your output should be in one line with “Kalimdor is just ahead” (without quotes, hereinafter the same) if Thrall and Grom can meet or “The Burning Shadow consume us all” otherwise as indicated in the sample output. 

Example Input

23 21 21 33 21 22 3

Example Output

Case 1: The Burning Shadow consume us allCase 2: Kalimdor is just ahead

题意:给定n个点和m条有向边,对于图中任意两个点,看都能是否能联通;

思路:bfs搜索一遍,把能联通的点用lin二维数组记录一下;

#include <iostream>#include <cstdio>#include <cstring>#include <queue>#include <cmath>#include <algorithm>#include <vector>#include <map>#include <string>#include <stack>#define LL long long#define INF 0x7fffffff#define MAX 200010#define PI 3.1415926535897932#define E 2.718281828459045using namespace std;int n,m,T;int vis[2010];int lin[2010][2010];vector <int> edge[2010];void BFS(int s){    memset(vis,0,sizeof(vis));    vis[s]=1;    queue<int> q;    q.push(s);    while(!q.empty())    {        int first=q.front();        q.pop();        for(int i=0; i<edge[first].size(); i++)        {            int next=edge[first][i];            if(vis[next]) continue;            lin[s][next]=1;            vis[next]=1;            q.push(next);        }    }}int main(){    scanf("%d",&T);    int t=1;    while(T--)    {        scanf("%d%d",&n,&m);        for(int i=1; i<=n; i++)            edge[i].clear();        memset(lin,0,sizeof(lin));        for(int i=1; i<=m; i++)        {            int a,b;            scanf("%d%d",&a,&b);            edge[a].push_back(b);        }        for(int i=1; i<=n; i++)        {            BFS(i);        }        int flag=1;        for(int i=1; i<=n; i++)        {            for(int j=i+1; j<=n; j++)            {                if(!lin[i][j] && !lin[j][i])                {                    flag=0;                    break;                }            }            if (flag==0) break;        }        if(flag) printf("Case %d: Kalimdor is just ahead\n",t++);        else printf("Case %d: The Burning Shadow consume us all\n",t++);    }}


阅读全文
0 0