highway.cpp:13:11: error: 'N' was not declared in this scope
int depth[N];
^
highway.cpp: In function 'void dfs(int, int, int)':
highway.cpp:16:2: error: 'depth' was not declared in this scope
depth[u] = d;
^~~~~
highway.cpp:17:19: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int i = 0; i < adj[u].size(); i++){
~~^~~~~~~~~~~~~~~
highway.cpp: In function 'void find_pair(int, std::vector<int>, std::vector<int>, int, int)':
highway.cpp:74:5: error: 'depth' was not declared in this scope
if(depth[x] < depth[y]){
^~~~~
highway.cpp:42:12: warning: unused variable 'a' [-Wunused-variable]
long long a = A, b = B;
^
highway.cpp:42:19: warning: unused variable 'b' [-Wunused-variable]
long long a = A, b = B;
^