carnival.cpp: In function 'int main()':
carnival.cpp:15:15: error: 'cost' was not declared in this scope
15 | cin >> (cost[i]);
| ^~~~
carnival.cpp:31:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
31 | for (int i=m;i<pos.size();i++) printf (" %d",pos[i]);
| ~^~~~~~~~~~~
carnival.cpp:26:30: warning: unused variable 'a' [-Wunused-variable]
26 | int l = 0, r = pos.size(), a = pos.size();
| ^
carnival.cpp:42:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
42 | for (int i=1;i<=N;i++) printf (" %d",col[i]); puts(""); fflush(stdout);
| ^~~
carnival.cpp:42:48: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
42 | for (int i=1;i<=N;i++) printf (" %d",col[i]); puts(""); fflush(stdout);
| ^~~~
carnival.cpp:34:17: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
34 | int c; scanf ("%d",&c);
| ~~~~~~^~~~~~~~~