fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. const int MAX = 105;
  5. vector<int> adj[MAX];
  6. bool visited[MAX];
  7. int n;
  8.  
  9. void readInput() {
  10. cin >> n;
  11. for (int i = 1; i <= n; i++) {
  12. int k;
  13. cin >> k;
  14. for (int j = 0; j < k; j++) {
  15. int v;
  16. cin >> v;
  17. // Chỉ thêm cạnh nếu chưa tồn tại
  18. if (find(adj[i].begin(), adj[i].end(), v) == adj[i].end()) {
  19. adj[i].push_back(v);
  20. }
  21. if (find(adj[v].begin(), adj[v].end(), i) == adj[v].end()) {
  22. adj[v].push_back(i);
  23. }
  24. }
  25. }
  26. }
  27.  
  28. void dfs(int u) {
  29. visited[u] = true;
  30. for (int v : adj[u]) {
  31. if (!visited[v]) {
  32. dfs(v);
  33. }
  34. }
  35. }
  36.  
  37. int dem_so_tplt(int ignore = -1) {
  38. memset(visited, false, sizeof(visited));
  39. int count = 0;
  40. for (int i = 1; i <= n; i++) {
  41. if (i == ignore) continue;
  42. if (!visited[i]) {
  43. count++;
  44. dfs(i);
  45. }
  46. }
  47. return count;
  48. }
  49.  
  50. void tim_dinh_tru() {
  51. vector<int> dt;
  52. int so_tplt_ban_dau = dem_so_tplt();
  53. for (int u = 1; u <= n; u++) {
  54. int tplt_moi = dem_so_tplt(u);
  55. if (tplt_moi > so_tplt_ban_dau) {
  56. dt.push_back(u);
  57. }
  58. }
  59. cout << dt.size() << endl;
  60. for (int i : dt) cout << i << " ";
  61. cout << endl;
  62. }
  63.  
  64. int main() {
  65. readInput();
  66. tim_dinh_tru();
  67. return 0;
  68. }
Success #stdin #stdout 0s 5292KB
stdin
5
2 2 3
2 1 3
3 1 2 4
2 3 5
1 4
stdout
0