首页 > 学院 > 开发设计 > 正文

sdutacm-图的基本存储的基本方式二

2019-11-06 07:27:09
字体:
来源:转载
供稿:网友

图的基本存储的基本方式二

TimeLimit: 1000MS Memory Limit: 65536KB

SubmitStatistic

PRoblem Description

解决图论问题,首先就要思考用什么样的方式存储图。但是小鑫却怎么也弄不明白如何存图才能有利于解决问题。你能帮他解决这个问题么?

Input

 多组输入,到文件结尾。

每一组第一行有两个数n、m表示n个点,m条有向边。接下来有m行,每行两个数u、v代表u到v有一条有向边。第m+2行有一个数q代表询问次数,接下来q行每行有一个询问,输入两个数为a,b。

注意:点的编号为0~n-1,2<=n<=500000,0<=m<=500000,0<=q<=500000,a!=b,输入保证没有自环和重边

Output

 对于每一条询问,输出一行。若a到b可以直接连通输出Yes,否则输出No。

Example Input

2 1

0 1

2

0 1

1 0

Example Output

Yes

No

Hint

 

Author

 lin

#include <stdio.h>#include <string.h>#include <stdlib.h>struct node{    int data;    struct node *next;};int main(){    int i,m,n,v,u,QQ,a,b;    struct node *tail,*p,*q,*gra[555555];    while(~scanf("%d %d",&n,&m))    {        for(i=0; i<n; i++)            gra[i]=NULL;  //清零        for(i=0; i<m; i++)        {            scanf("%d %d",&u,&v);            if(gra[u]==NULL)            {                gra[u]=(struct node *)malloc(sizeof(struct node));                gra[u]->data=v;                gra[u]->next=NULL;            }            else            {                q=gra[u]->next;                p=(struct node *)malloc(sizeof(struct node));                p->data=v;                p->next=q;                gra[u]->next=p;            }        }        scanf("%d",&qq);        while(qq--)        {            int flag=0;            scanf("%d %d",&a,&b);            if(gra[a]==NULL)                printf("No/n");            else            {                p=gra[a];                while(p!=NULL)                {                    if(p->data==b)                    {                        flag=1;                        break;                    }                    p=p->next;                }            if(flag)                printf("Yes/n");            else                printf("No/n");            }        }    }    return 0;}/***************************************************User name: jk160505徐红博Result: AcceptedTake time: 56msTake Memory: 3904KBSubmit time: 2017-02-14 10:48:04****************************************************/


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表