#include #include #include using namespace std; int simplePaths(vector> edges) { } int main() { int t; cin >> t; int n; for(int i=0;i> n; vector< vector > graph; graph.reserve(n); int from,to; for(int j=0;j> from ; cin >> to ; graph[from].push_back(to); } } }