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
| #include<bits/stdc++.h> using namespace std;
set<int> g[100010]; int ind[100010]; int n,m;
int main(){ ios::sync_with_stdio(0);cin.tie(0);
int t; cin>>t; while(t--){ ans="";ct=0; for(int i=0;i<100010;i++){ g[i].clear(); ind[i]=0; v[i]=0; }
cin>>n>>m; for(int i=0;i<m;i++){ int to,from; cin>>from>>to; g[from].insert(to); }
for(int i=0;i<n;i++) for(auto a:g[i]) ind[a]++; vector<int> ans; priority_queue<int,vector<int>,greater<int>> topo; for(int i=0;i<n;i++){ if(ind[i]==0){ topo.push(i); } }
while(!topo.empty()){ int now=topo.top(); topo.pop(); ans.push_back(now); for(auto next:g[now]){ if(--ind[next] ==0){ topo.push(next); } } }
if(ans.size()==n){ cout<<ans[0]; for(int i=1;i<ans.size();i++) cout<<" "<<ans[i]; cout<<"\n"; }else{ cout<<"QAQ\n"; } } return 0; }
|