friend.cpp: In function 'int subtask1(int, int*, int*, int*)':
friend.cpp:6:5: error: 'vector' was not declared in this scope
vector<vector<int>> adjlist(n);
^~~~~~
friend.cpp:6:19: error: expected primary-expression before 'int'
vector<vector<int>> adjlist(n);
^~~
friend.cpp:9:13: error: 'adjlist' was not declared in this scope
adjlist[host[i]].push_back(i);
^~~~~~~
friend.cpp:12:26: error: 'adjlist' was not declared in this scope
for (int x : adjlist[host[i]]){
^~~~~~~
friend.cpp:17:26: error: 'adjlist' was not declared in this scope
for (int x : adjlist[host[i]]){
^~~~~~~
friend.cpp:21:13: error: 'adjlist' was not declared in this scope
adjlist[host[i]].push_back(i);
^~~~~~~
friend.cpp:25:5: error: 'll' was not declared in this scope
ll mx = 0;
^~
friend.cpp:29:12: error: expected ';' before 'tot'
ll tot = 0;
^~~
friend.cpp:32:17: error: 'mx' was not declared in this scope
mx+=confidence[j];
^~
friend.cpp:33:30: error: 'adjlist' was not declared in this scope
for (int k : adjlist[j]){
^~~~~~~
friend.cpp:48:12: error: 'mx' was not declared in this scope
return mx;
^~