zoukankan      html  css  js  c++  java
  • Codeforces 466 E. Information Graph


    并查集....

    E. Information Graph
    time limit per test
    1 second
    memory limit per test
    512 megabytes
    input
    standard input
    output
    standard output

    There are n employees working in company "X" (let's number them from 1 to n for convenience). Initially the employees didn't have any relationships among each other. On each of m next days one of the following events took place:

    • either employee y became the boss of employee x (at that, employee x didn't have a boss before);
    • or employee x gets a packet of documents and signs them; then he gives the packet to his boss. The boss signs the documents and gives them to his boss and so on (the last person to sign the documents sends them to the archive);
    • or comes a request of type "determine whether employee x signs certain documents".

    Your task is to write a program that will, given the events, answer the queries of the described type. At that, it is guaranteed that throughout the whole working time the company didn't have cyclic dependencies.

    Input

    The first line contains two integers n and m (1 ≤ n, m ≤ 105) — the number of employees and the number of events.

    Each of the next m lines contains the description of one event (the events are given in the chronological order). The first number of the line determines the type of event t (1 ≤ t ≤ 3).

    • If t = 1, then next follow two integers x and y (1 ≤ x, y ≤ n) — numbers of the company employees. It is guaranteed that employee xdoesn't have the boss currently.
    • If t = 2, then next follow integer x (1 ≤ x ≤ n) — the number of the employee who got a document packet.
    • If t = 3, then next follow two integers x and i (1 ≤ x ≤ n; 1 ≤ i ≤ [number of packets that have already been given]) — the employee and the number of the document packet for which you need to find out information. The document packets are numbered started from 1 in the chronological order.

    It is guaranteed that the input has at least one query of the third type.

    Output

    For each query of the third type print "YES" if the employee signed the document package and "NO" otherwise. Print all the words without the quotes.

    Sample test(s)
    input
    4 9
    1 4 3
    2 4
    3 3 1
    1 2 3
    2 2
    3 1 2
    1 3 1
    2 2
    3 1 3
    
    output
    YES
    NO
    YES


    #include <iostream>
    #include <cstdio>
    #include <cstring>
    #include <algorithm>
    #include <vector>
    
    using namespace std;
    
    const int maxn=100100;
    
    int n,m;
    int fa[maxn],bef[maxn];
    vector<int> v1,v2;
    
    int find(int x)
    {
    	if(x==fa[x]) return x;
    	return fa[x]=find(fa[x]);
    }
    
    int main()
    {
    	scanf("%d%d",&n,&m);
    	for(int i=0;i<=n+10;i++) fa[i]=bef[i]=i;
    	int c,a,b;
    	while(m--)
    	{
    		scanf("%d",&c);
    		if(c==1)
    		{
    			scanf("%d%d",&a,&b);
    			bef[a]=b; fa[a]=b;
    		}
    		else if(c==2)
    		{
    			scanf("%d",&a);
    			v1.push_back(a);
    			v2.push_back(find(a));
    		}
    		else if(c==3)
    		{
    			scanf("%d%d",&a,&b);
    			b--;
    			int son=v1[b],father=v2[b];
    			bool flag=false;
    			while(true)
    			{
    				if(son==a)
    				{
    					flag=true;
    					break;
    				}
    				if(son==father) break;
    				son=bef[son];
    			}
    			if(flag) puts("YES");
    			else puts("NO");
    		}
    	}
    	return 0;
    }
    



  • 相关阅读:
    LinkageSel无限级联动下拉菜单
    纯CSS+HTML自定义checkbox效果[转]
    jquery1.9+,jquery1.10+ 为什么不支持live方法了?
    电脑按键混乱,好像被锁定了Alt键
    docker 清理无用的卷
    dotnet core linux 接入支付宝H5支付,提示:System.PlatformNotSupportedException","Message":"'CspParameters' requires Windows Cryptographic API (CAPI), which is not available on this platform.
    【每天学一点Linux】centos7 docker 启动cpu100% 飙升居高不下 无法关机 无法杀死进程
    【每天学一点Linux】centos7修改selinux导致无法开机 Failed to load SELinux policy. Freezing
    webapi HttpGet标签
    强制结束虚拟机 centos home 卷丢失导致无法挂载进入 emergency mode 紧急模式
  • 原文地址:https://www.cnblogs.com/blfshiye/p/4057104.html
Copyright © 2011-2022 走看看