supertrees.cpp: In function 'int construct(std::vector<std::vector<int> >)':
supertrees.cpp:22:2: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
22 | if(i!=0)row[i-1]=1;
| ^~
supertrees.cpp:23:3: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
23 | answer.push_back(row);
| ^~~~~~
supertrees.cpp:14:19: warning: unused variable 'i' [-Wunused-variable]
14 | int n = p.size(),i,j;
| ^
supertrees.cpp:14:21: warning: unused variable 'j' [-Wunused-variable]
14 | int n = p.size(),i,j;
| ^