bootfall.cpp:4:0: warning: ignoring #pragma GCC optimization [-Wunknown-pragmas]
#pragma GCC optimization ("O3")
bootfall.cpp:5:0: warning: ignoring #pragma GCC optimization [-Wunknown-pragmas]
#pragma GCC optimization ("unroll-loops")
bootfall.cpp: In function 'void solve(int)':
bootfall.cpp:63:23: error: 'maxi' was not declared in this scope
if (marc[k] == n && maxi != 0) ans.pb(k);
^~~~
bootfall.cpp:63:23: note: suggested alternative: 'marc'
if (marc[k] == n && maxi != 0) ans.pb(k);
^~~~
marc
bootfall.cpp: In function 'int main()':
bootfall.cpp:73:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d", &n);
~~~~~^~~~~~~~~~
bootfall.cpp:76:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d", &xs[i]);
~~~~~^~~~~~~~~~~~~~