citymapping.cpp: In function 'void find_roads(int, int, int*, int*, int*)':
citymapping.cpp:17:20: error: 'pair' was not declared in this scope
17 | vector<pair<ll,pair<ll,ll>>>v;
| ^~~~
citymapping.cpp:17:5: error: 'vector' was not declared in this scope
17 | vector<pair<ll,pair<ll,ll>>>v;
| ^~~~~~
citymapping.cpp:4:12: error: expected primary-expression before 'long'
4 | #define ll long long
| ^~~~
citymapping.cpp:17:17: note: in expansion of macro 'll'
17 | vector<pair<ll,pair<ll,ll>>>v;
| ^~
citymapping.cpp:23:13: error: 'v' was not declared in this scope
23 | v.pb({get_distance(i,j),{i,j}});
| ^
citymapping.cpp:28:10: error: 'v' was not declared in this scope
28 | sort(v.begin(),v.end());
| ^
citymapping.cpp:28:5: error: 'sort' was not declared in this scope; did you mean 'short'?
28 | sort(v.begin(),v.end());
| ^~~~
| short