0_0_34043550_8921.cpp:6:50: error: wrong number of template arguments (0, should be 1)
#define pq priority_queue<PII, vector<PII>, less<> >
^
0_0_34043550_8921.cpp:7:1: note: in expansion of macro 'pq'
pq q[5];
^
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/string:48:0,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/locale_classes.h:40,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/ios_base.h:41,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/ios:42,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/istream:38,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/sstream:38,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/complex:45,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/ccomplex:38,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/x86_64-w64-mingw32/bits/stdc++.h:52,
from 0_0_34043550_8921.cpp:1:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_function.h:367:12: error: provided for 'template<class _Tp> struct std::less'
struct less : public binary_function<_Tp, _Tp, bool>
^
0_0_34043550_8921.cpp:6:52: error: template argument 3 is invalid
#define pq priority_queue<PII, vector<PII>, less<> >
^
0_0_34043550_8921.cpp:7:1: note: in expansion of macro 'pq'
pq q[5];
^
0_0_34043550_8921.cpp:7:8: error: invalid type in declaration before ';' token
pq q[5];
^
0_0_34043550_8921.cpp: In function 'int main()':
0_0_34043550_8921.cpp:6:50: error: wrong number of template arguments (0, should be 1)
#define pq priority_queue<PII, vector<PII>, less<> >
^
0_0_34043550_8921.cpp:14:39: note: in expansion of macro 'pq'
for (int j = 1; j <= 3; ++j) q[j] = pq();
^
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/string:48:0,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/locale_classes.h:40,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/ios_base.h:41,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/ios:42,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/istream:38,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/sstream:38,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/complex:45,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/ccomplex:38,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/x86_64-w64-mingw32/bits/stdc++.h:52,
from 0_0_34043550_8921.cpp:1:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_function.h:367:12: error: provided for 'template<class _Tp> struct std::less'
struct less : public binary_function<_Tp, _Tp, bool>
^
0_0_34043550_8921.cpp:6:52: error: template argument 3 is invalid
#define pq priority_queue<PII, vector<PII>, less<> >
^
0_0_34043550_8921.cpp:14:39: note: in expansion of macro 'pq'
for (int j = 1; j <= 3; ++j) q[j] = pq();
^
0_0_34043550_8921.cpp:21:10: error: request for member 'push' in 'q[a]', which is of non-class type 'int'
q[a].push({ x, ++k });
^
0_0_34043550_8921.cpp:26:15: error: request for member 'empty' in 'q[a]', which is of non-class type 'int'
if (!q[a].empty()) {
^
0_0_34043550_8921.cpp:27:26: error: request for member 'top' in 'q[a]', which is of non-class type 'int'
printf("%d\n", q[a].top().second);
^
0_0_34043550_8921.cpp:28:11: error: request for member 'pop' in 'q[a]', which is of non-class type 'int'
q[a].pop();
^
|