| Problem | bigbinarytree |
|---|---|
| User | bachnguyen123 |
| Submission Time | 2025-12-25 16:11:32 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
bigbinarytree.cpp: In function ‘int main()’:
bigbinarytree.cpp:40:2: error: ‘priority_queue’ was not declared in this scope
40 | priority_queue<pair<int,int>> pq;
| ^~~~~~~~~~~~~~
bigbinarytree.cpp:3:1: note: ‘std::priority_queue’ is defined in header ‘<queue>’; did you forget to ‘#include <queue>’?
2 | #include <iostream>
+++ |+#include <queue>
3 | using namespace std;
bigbinarytree.cpp:40:29: error: expected primary-expression before ‘>’ token
40 | priority_queue<pair<int,int>> pq;
| ^~
bigbinarytree.cpp:40:32: error: ‘pq’ was not declared in this scope; did you mean ‘p’?
40 | priority_queue<pair<int,int>> pq;
| ^~
| p