0_0_38571176_18341.cpp: In function 'int main()':
0_0_38571176_18341.cpp:34:5: error: 'sort' was not declared in this scope; did you mean 'short'?
34 | sort(a,a+k,cmp);
| ^~~~
| short
0_0_38571176_18341.cpp:55:5: error: 'stack' was not declared in this scope
55 | stack<int> st;
| ^~~~~
0_0_38571176_18341.cpp:2:1: note: 'std::stack' is defined in header '<stack>'; did you forget to '#include <stack>'?
1 | #include<iostream>
+++ |+#include <stack>
2 | #define inf 0x3f3f3f3f
0_0_38571176_18341.cpp:55:11: error: expected primary-expression before 'int'
55 | stack<int> st;
| ^~~
0_0_38571176_18341.cpp:56:5: error: 'st' was not declared in this scope; did you mean 'std'?
56 | st.push(a[max_i].ind);
| ^~
| std
|