Codeforces 681D Gifts by the List【思维+Dfs】

    xiaoxiao2021-03-25  69

    D. Gifts by the List time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output

    Sasha lives in a big happy family. At the Man's Day all the men of the family gather to celebrate it following their own traditions. There are n men in Sasha's family, so let's number them with integers from 1 to n.

    Each man has at most one father but may have arbitrary number of sons.

    Man number A is considered to be the ancestor of the man number B if at least one of the following conditions is satisfied:

    A = B; the man number A is the father of the man number B; there is a man number C, such that the man number A is his ancestor and the man number C is the father of the man number B.

    Of course, if the man number A is an ancestor of the man number B and A ≠ B, then the man number B is not an ancestor of the man number A.

    The tradition of the Sasha's family is to give gifts at the Man's Day. Because giving gifts in a normal way is boring, each year the following happens.

    A list of candidates is prepared, containing some (possibly all) of the n men in some order. Each of the n men decides to give a gift. In order to choose a person to give a gift to, man A looks through the list and picks the first man B in the list, such that B is an ancestor of A and gives him a gift. Note that according to definition it may happen that a person gives a gift to himself. If there is no ancestor of a person in the list, he becomes sad and leaves the celebration without giving a gift to anyone.

    This year you have decided to help in organizing celebration and asked each of the n men, who do they want to give presents to (this person is chosen only among ancestors). Are you able to make a list of candidates, such that all the wishes will be satisfied if they give gifts according to the process described above?

    Input

    In the first line of the input two integers n and m (0 ≤ m < n ≤ 100 000) are given — the number of the men in the Sasha's family and the number of family relations in it respectively.

    The next m lines describe family relations: the (i + 1)th line consists of pair of integers pi and qi (1 ≤ pi, qi ≤ n, pi ≠ qi) meaning that the man numbered pi is the father of the man numbered qi. It is guaranteed that every pair of numbers appears at most once, that among every pair of two different men at least one of them is not an ancestor of another and that every man has at most one father.

    The next line contains n integers a1, a2, ..., an (1 ≤ ai ≤ n), ith of which means that the man numbered i wants to give a gift to the man numbered ai. It is guaranteed that for every 1 ≤ i ≤ n the man numbered ai is an ancestor of the man numbered i.

    Output

    Print an integer k (1 ≤ k ≤ n) — the number of the men in the list of candidates, in the first line.

    Print then k pairwise different positive integers not exceeding n — the numbers of the men in the list in an order satisfying every of the men's wishes, one per line.

    If there are more than one appropriate lists, print any of them. If there is no appropriate list print  - 1 in the only line.

    Examples Input 3 2 1 2 2 3 1 2 1 Output -1 Input 4 2 1 2 3 4 1 2 3 3 Output 3 2 1 3 Note

    The first sample explanation:

    if there would be no 1 in the list then the first and the third man's wishes would not be satisfied (a1 = a3 = 1); if there would be no 2 in the list then the second man wish would not be satisfied (a2 = 2); if 1 would stay before 2 in the answer then the second man would have to give his gift to the first man, but he wants to give it to himself (a2 = 2). if, at the other hand, the man numbered 2 would stay before the man numbered 1, then the third man would have to give his gift to the second man, but not to the first (a3 = 1).  题目大意:

    给你N个点,M条边,u,v表示u是v的祖先。

    并且已知每个人想送给编号为x的祖先一个礼物。

    现在让你构造出来一个序列,使得每个人从上到下看到的第一个祖先,就把礼物送给他,试满足所有人最终送的礼物都送给了自己想送的人身上。

    思路:

    对于一个点u来讲,假设这个点作为根出现,那么很显然,其所有的子节点,要么want【v】=u.要么want【v】=v.否则这个点v是送不到自己想送的人身上的。

    那么我们不妨Dfs处理,动态维护一下就行。

    Ac代码:

    #include<stdio.h> #include<string.h> #include<vector> using namespace std; vector<int >mp[200040]; int want[200040]; int degree[200040]; int ans[200040]; int f[200040]; int flag,cnt; void Dfs(int u,int x) { for(int i=0;i<mp[u].size();i++) { int v=mp[u][i]; Dfs(v,x); if(want[v]!=v&&want[v]!=want[u]) { flag=0; } } if(want[u]==u) ans[cnt++]=u; } int main() { int n,m; while(~scanf("%d%d",&n,&m)) { memset(f,0,sizeof(f)); memset(degree,0,sizeof(degree)); for(int i=1;i<=n;i++)mp[i].clear(); for(int i=0;i<m;i++) { int x,y; scanf("%d%d",&x,&y); mp[x].push_back(y); degree[y]++; } cnt=0; for(int i=1;i<=n;i++)scanf("%d",&want[i]); flag=1; for(int i=1;i<=n;i++) { if(degree[i]==0)Dfs(i,i); } if(flag==0) { printf("-1\n"); } else { printf("%d\n",cnt); for(int i=0;i<cnt;i++) { printf("%d\n",ans[i]); } printf("\n"); } } }

    转载请注明原文地址: https://ju.6miu.com/read-27539.html

    最新回复(0)