prize.cpp: In function 'std::vector<int> q(int)':
prize.cpp:5:45: error: 'pos' was not declared in this scope; did you mean 'pow'?
5 | if (mp.find(idx) != mp.end()) return mp[pos];
| ^~~
| pow
prize.cpp:6:27: error: 'pos' was not declared in this scope; did you mean 'pow'?
6 | vector<int> res = ask(pos);
| ^~~
| pow
prize.cpp:6:23: error: 'ask' was not declared in this scope
6 | vector<int> res = ask(pos);
| ^~~
prize.cpp: In function 'int find_best(int)':
prize.cpp:22:27: error: 'query' was not declared in this scope
22 | vector<int> res = query(i);
| ^~~~~