沐枫NOI 10. Leaders

After a revolution in Berland the new dictator faced an unexpected challenge: the country has to be somehow ruled. The dictator is a very efficient manager, yet he can't personally give orders to each and every citizen. That's why he decided to pick some set of leaders he would control. Those leaders will directly order the citizens. However, leadership efficiency turned out to vary from person to person (i.e. while person A makes an efficient leader, person B may not be that good at it). That's why the dictator asked world-famous berland scientists for help. The scientists suggested an innovatory technology − to make the leaders work in pairs.

A relationship graph is some undirected graph whose vertices correspond to people. A simple path is a path with no repeated vertices. Long and frighteningly expensive research showed that a pair of people has maximum leadership qualities if a graph of relationships has a simple path between them with an odd number of edges. The scientists decided to call such pairs of different people leader pairs. Secret services provided the scientists with the relationship graph so that the task is simple − we have to learn to tell the dictator whether the given pairs are leader pairs or not. Help the scientists cope with the task.

Input

The first line contains integers n and m (1≤n≤105,0≤m≤105) − the number of vertices and edges in the relationship graph correspondingly. Next m lines contain pairs of integers a and b which mean that there is an edge between the a-th and the b-th vertices (the vertices are numbered starting from 11≤a,b≤n). It is guaranteed that the graph has no loops or multiple edges.

Next line contains number q (1≤q≤105) − the number of pairs the scientists are interested in. Next q lines contain these pairs (in the same format as the edges, the queries can be repeated, a query can contain a pair of the identical vertices).

Output

For each query print on a single line "Yes" if there's a simple odd path between the pair of people; otherwise, print "No".

Examples

Input

7 7
1 3
1 4
2 3
2 4
5 6
6 7
7 5
8
1 2
1 3
1 4
2 4
1 5
5 6
5 7
6 7

Output

No
Yes
Yes
Yes
No
Yes
Yes
Yes
#include<iostream>
#include<cstdio>
#include<algorithm>
#include<vector>
#include<set>
#include<queue>
using namespace std;	
typedef pair<int,int> P;
const int INF=1<<29;
int n,m,flag=0;
vector<int> vc[100000+10]; 
int len[100000+10],v[100000+10];
int start,end;
void DFS(int x,int le){
	if(flag) return;
	if(x==end){
		if(le%2==1) flag=1;
		return;
	}
	for(int i=0;i<vc[x].size();i++){
		int num=vc[x][i];
		if(v[num]){
			v[num]=0;
		    DFS(num,le+1);
	    	v[num]=1;  
		}
	}
}
int main(){ 
	scanf("%d%d",&n,&m);
	for(int i=0;i<m;i++){
		int a,b;
		scanf("%d%d",&a,&b);
		vc[a].push_back(b);
		vc[b].push_back(a);
	}
	int t;
	scanf("%d",&t);
	while(t--){
		scanf("%d%d",&start,&end);
		if(start==end){
			printf("No\n");
			continue;
		}
		for(int i=0;i<=n;i++) v[i]=1;
		v[start]=0;
		flag=0;
		DFS(start,0);
	//	cout<<len[b]<<endl;
		if(flag==1) printf("Yes\n");
		else printf("No\n");
	}
	return 0;
} 



  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值