money.cpp:1: warning: ignoring '#pragma GCC optimization' [-Wunknown-pragmas]
1 | #pragma GCC optimization "O2"
|
money.cpp:2: warning: ignoring '#pragma GCC optimization' [-Wunknown-pragmas]
2 | #pragma GCC optimization "unroll-loop"
|
money.cpp: In function 'int Travel(int)':
money.cpp:28:9: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
28 | if (!chk(l,r) || a[i] < a[i - 1]) break; kq = i;
| ^~
money.cpp:28:50: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
28 | if (!chk(l,r) || a[i] < a[i - 1]) break; kq = i;
| ^~
money.cpp: In function 'int main()':
money.cpp:54:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
54 | for (ll i = 1;i <= n;i++) cin>>a[i],v.push_back(a[i]); compress();
| ^~~
money.cpp:54:60: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
54 | for (ll i = 1;i <= n;i++) cin>>a[i],v.push_back(a[i]); compress();
| ^~~~~~~~
money.cpp:50:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
50 | freopen(task".inp", "r", stdin);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
money.cpp:51:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
51 | freopen(task".out", "w", stdout);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~