Codeforces Round #357 (Div. 2) D. Gifts by the List DFS

本文提供了一段针对Codeforces竞赛中D题Gifts by the List的解决方案代码,并详细介绍了使用深度优先搜索(DFS)来找出所有符合条件的节点的具体实现过程。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

D. Gifts by the List

链接:

http://codeforces.com/contest/681/problem/D

代码:

 1 #include<iostream>
 2 #include<vector>
 3 using namespace std;
 4 
 5 const int maxn = 1e6 + 7;
 6 int a[maxn], d[maxn], flag;
 7 vector<int> E[maxn];
 8 vector<int> ans;
 9 
10 void dfs(int x, int p)
11 {
12     for (int i = 0; i < E[x].size(); i++)
13     {
14         int u = E[x][i];
15         if (u == p) continue;
16         if (a[u] != a[x] && a[u] != u) flag = 1;
17         dfs(u, x);
18     }
19     if (a[x] == x) ans.push_back(x);
20 }
21 
22 int main()
23 {
24     int n, m;
25     cin >> n >> m;
26     for (int i = 1; i <= m; i++) {
27         int p, q;
28         cin >> p >> q;
29         E[p].push_back(q);
30         E[q].push_back(p);
31         d[q]++;
32     }
33     for (int i = 1; i <= n; i++)
34         cin >> a[i];
35     for (int i = 1; i <= n; i++)
36         if (!d[i])
37             dfs(i, 0);
38     if (flag) {
39         cout << -1 << endl;
40         return 0;
41     }
42     cout << ans.size() << endl;
43     for (int i = 0; i < ans.size(); i++)
44         cout << ans[i] << endl;
45     return 0;
46 }

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值