pat甲级 1146 Topological Order (25分)
note:把测试序列看作队列容器的出序列,判断每次元素出队,入度是否为零即可;
代码:
#include <iostream>
#include <vector>
#include <unordered_map>
using namespace std;
unordered_map<int,vector<int>> s;
unordered_map<int,int> in,temp;
vector<int> v;
int main()
{
int n,m,x,y;
cin>>n>>m;
while(m--)
{
cin>>x>>y;
s[x].push_back(y);
++in[y];
}
cin>>m;
for(int i=0;i<m;++i)
{
temp=in;
int judge=0;
for(int j=0;j<n;++j)
{
cin>>x;
if(temp[x]) judge=1;
for(auto k:s[x]) --temp[k];
}
if(judge) v.push_back(i);
}
for(int i=0;i<(int)v.size();++i)
printf("%d%c",v[i],i<(int)v.size()-1?' ':'\n');
return 0;
}