prize.cpp:22: warning: ignoring #pragma GCC optimization [-Wunknown-pragmas]
22 | #pragma GCC optimization ("O3")
|
prize.cpp:23: warning: ignoring #pragma GCC optimization [-Wunknown-pragmas]
23 | #pragma GCC optimization ("unroll-loops")
|
prize.cpp: In function 'int find_best(int)':
prize.cpp:37:20: error: expected primary-expression before '{' token
37 | if(p[l] == {0, 0}) p[l] = ask(l);
| ^
prize.cpp:37:19: error: expected ')' before '{' token
37 | if(p[l] == {0, 0}) p[l] = ask(l);
| ~ ^~
| )
prize.cpp:37:35: error: 'ask' was not declared in this scope
37 | if(p[l] == {0, 0}) p[l] = ask(l);
| ^~~
prize.cpp:38:20: error: expected primary-expression before '{' token
38 | if(p[r] == {0, 0}) p[r] = ask(r);
| ^
prize.cpp:38:19: error: expected ')' before '{' token
38 | if(p[r] == {0, 0}) p[r] = ask(r);
| ~ ^~
| )
prize.cpp:38:35: error: 'ask' was not declared in this scope
38 | if(p[r] == {0, 0}) p[r] = ask(r);
| ^~~
prize.cpp:40:20: error: expected primary-expression before '{' token
40 | if(p[l] == {0, 0}) return l;
| ^
prize.cpp:40:19: error: expected ')' before '{' token
40 | if(p[l] == {0, 0}) return l;
| ~ ^~
| )
prize.cpp:41:20: error: expected primary-expression before '{' token
41 | if(p[r] == {0, 0}) return r;
| ^
prize.cpp:41:19: error: expected ')' before '{' token
41 | if(p[r] == {0, 0}) return r;
| ~ ^~
| )
prize.cpp:45:9: error: 'md' was not declared in this scope; did you mean 'mod'?
45 | md = (l+r)/2;
| ^~
| mod
prize.cpp:47:23: error: no matching function for call to 'std::queue<std::pair<int, int> >::push(<brace-enclosed initializer list>)'
47 | Q.push({l, md});
| ^
In file included from /usr/include/c++/9/queue:64,
from prize.cpp:6:
/usr/include/c++/9/bits/stl_queue.h:259:7: note: candidate: 'void std::queue<_Tp, _Sequence>::push(const value_type&) [with _Tp = std::pair<int, int>; _Sequence = std::deque<std::pair<int, int>, std::allocator<std::pair<int, int> > >; std::queue<_Tp, _Sequence>::value_type = std::pair<int, int>]'
259 | push(const value_type& __x)
| ^~~~
/usr/include/c++/9/bits/stl_queue.h:259:30: note: no known conversion for argument 1 from '<brace-enclosed initializer list>' to 'const value_type&' {aka 'const std::pair<int, int>&'}
259 | push(const value_type& __x)
| ~~~~~~~~~~~~~~~~~~^~~
/usr/include/c++/9/bits/stl_queue.h:264:7: note: candidate: 'void std::queue<_Tp, _Sequence>::push(std::queue<_Tp, _Sequence>::value_type&&) [with _Tp = std::pair<int, int>; _Sequence = std::deque<std::pair<int, int>, std::allocator<std::pair<int, int> > >; std::queue<_Tp, _Sequence>::value_type = std::pair<int, int>]'
264 | push(value_type&& __x)
| ^~~~
/usr/include/c++/9/bits/stl_queue.h:264:25: note: no known conversion for argument 1 from '<brace-enclosed initializer list>' to 'std::queue<std::pair<int, int> >::value_type&&' {aka 'std::pair<int, int>&&'}
264 | push(value_type&& __x)
| ~~~~~~~~~~~~~^~~
prize.cpp:48:23: error: no matching function for call to 'std::queue<std::pair<int, int> >::push(<brace-enclosed initializer list>)'
48 | Q.push({md, r});
| ^
In file included from /usr/include/c++/9/queue:64,
from prize.cpp:6:
/usr/include/c++/9/bits/stl_queue.h:259:7: note: candidate: 'void std::queue<_Tp, _Sequence>::push(const value_type&) [with _Tp = std::pair<int, int>; _Sequence = std::deque<std::pair<int, int>, std::allocator<std::pair<int, int> > >; std::queue<_Tp, _Sequence>::value_type = std::pair<int, int>]'
259 | push(const value_type& __x)
| ^~~~
/usr/include/c++/9/bits/stl_queue.h:259:30: note: no known conversion for argument 1 from '<brace-enclosed initializer list>' to 'const value_type&' {aka 'const std::pair<int, int>&'}
259 | push(const value_type& __x)
| ~~~~~~~~~~~~~~~~~~^~~
/usr/include/c++/9/bits/stl_queue.h:264:7: note: candidate: 'void std::queue<_Tp, _Sequence>::push(std::queue<_Tp, _Sequence>::value_type&&) [with _Tp = std::pair<int, int>; _Sequence = std::deque<std::pair<int, int>, std::allocator<std::pair<int, int> > >; std::queue<_Tp, _Sequence>::value_type = std::pair<int, int>]'
264 | push(value_type&& __x)
| ^~~~
/usr/include/c++/9/bits/stl_queue.h:264:25: note: no known conversion for argument 1 from '<brace-enclosed initializer list>' to 'std::queue<std::pair<int, int> >::value_type&&' {aka 'std::pair<int, int>&&'}
264 | push(value_type&& __x)
| ~~~~~~~~~~~~~^~~
prize.cpp:50:1: warning: control reaches end of non-void function [-Wreturn-type]
50 | }
| ^