stations.cpp:7:1: error: 'vecotr' does not name a type
7 | vecotr<int> adj[1000];
| ^~~~~~
stations.cpp: In function 'void dfs(long long int)':
stations.cpp:12:18: error: 'adj' was not declared in this scope
12 | for (int j : adj[i]) {
| ^~~
stations.cpp: In function 'std::vector<long long int> label(long long int, long long int, std::vector<long long int>, std::vector<long long int>)':
stations.cpp:20:9: error: 'adj' was not declared in this scope
20 | adj[u[i]].push_back(v[i]);
| ^~~
stations.cpp:23:45: error: 'adj' was not declared in this scope
23 | int rt; for (int i = 0; i < n; i++) if (adj[i].size() == 1) rt = i;
| ^~~
stations.cpp:27:9: error: 'adj' was not declared in this scope
27 | adj[i].clear();
| ^~~