friends.cpp: In function 'void print()':
friends.cpp:22:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for (int &v : sel) printf("%d ",v); printf("\n");
^~~
friends.cpp:22:41: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
for (int &v : sel) printf("%d ",v); printf("\n");
^~~~~~
friends.cpp:24:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for (int &v : nop) printf("%d ",v); printf("\n");
^~~
friends.cpp:24:41: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
for (int &v : nop) printf("%d ",v); printf("\n");
^~~~~~
friends.cpp:26:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for (int &v : cand) printf("%d ",v); printf("\n\n");
^~~
friends.cpp:26:42: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
for (int &v : cand) printf("%d ",v); printf("\n\n");
^~~~~~
friends.cpp: In function 'bool bt(int, int)':
friends.cpp:33:19: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
if (sel.size()<=p&&nq<=q) return true;
~~~~~~~~~~^~~
friends.cpp:64:22: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
while(cand.size()>psz) {
~~~~~~~~~~~^~~~
friends.cpp: In function 'void solve(int, int)':
friends.cpp:85:19: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int i=0;i<grp[t].size();i++) {
~^~~~~~~~~~~~~~
friends.cpp: In function 'int main()':
friends.cpp:146:35: warning: format '%d' expects argument of type 'int', but argument 2 has type 'std::vector<int>::size_type {aka long unsigned int}' [-Wformat=]
printf("%d ",grp[i].size());
~~~~~~~~~~~~~^
friends.cpp:147:9: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for (int &v : grp[i]) printf("%d ",v); printf("\n");
^~~
friends.cpp:147:48: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
for (int &v : grp[i]) printf("%d ",v); printf("\n");
^~~~~~
friends.cpp:96:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d%d%d",&n,&p,&q);
~~~~~^~~~~~~~~~~~~~~~~~~
friends.cpp:99:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d",&mi);
~~~~~^~~~~~~~~~
friends.cpp:103:18: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d",&a);
~~~~~^~~~~~~~~