1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
| #include<bits/stdc++.h> using namespace std;
const int maxn=310000; int n,m; vector<int> M[maxn]; bool vis[maxn];
void dfs(int x) { cout<<x<<" "; vis[x]=1; for(int i=0;i<M[x].size();i++) { int t=M[x][i]; if(!vis[t]) { dfs(t); } } }
void bfs(int x) { queue<int> Q; vis[x]=1; Q.push(x); while(!Q.empty()) { int hd=Q.front(); cout<<hd<<" "; for(int i=0;i<M[hd].size();i++) { int t=M[hd][i]; if(!vis[t]) { Q.push(t); vis[t]=1; } } Q.pop(); } }
int main() { ios::sync_with_stdio(false); cin>>n>>m; for(int i=1,a,b;i<=m;i++) { cin>>a>>b; M[a].push_back(b); } for(int i=1;i<=n;i++) { sort(M[i].begin(),M[i].end()); } dfs(1); cout<<endl; for(int i=1;i<=n;i++) { vis[i]=0; } bfs(1); return 0; }
|