fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main() {
  5. int E, T;
  6. vector<int> adjList[2500];
  7. cin >> E;
  8. for(int i = 0; i < E; i++) {
  9. //
  10. }
  11. cin >> T;
  12. while(T--) {
  13. int start;
  14. int dist[2500];
  15. for(int i = 0; i < E; i++)
  16. dist[i] = -1;
  17. cin >> start;
  18. queue<int> q;
  19. q.push(start);
  20. dist[start] = 0;
  21. while(!q.empty()) {
  22. int now = q.front(), next; q.pop();
  23. //for() {
  24. q.push(next);
  25. dist[next] = dist[now]+1;
  26. // }
  27. }
  28. }
  29. return 0;
  30. }
Success #stdin #stdout 0.01s 5284KB
stdin
Standard input is empty
stdout
Standard output is empty