Problem | photo |
---|---|
User | Duk168 |
Submission Time | 2024-10-19 14:35:46 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
photo.cpp: In function ‘int main()’:
photo.cpp:14:17: error: ‘pii’ was not declared in this scope
14 | priority_queue<pii, vector<pii>, greater<pii>> pq;
| ^~~
photo.cpp:14:32: error: template argument 2 is invalid
14 | priority_queue<pii, vector<pii>, greater<pii>> pq;
| ^
photo.cpp:14:46: error: template argument 1 is invalid
14 | priority_queue<pii, vector<pii>, greater<pii>> pq;
| ^~
photo.cpp:14:46: error: template argument 2 is invalid
photo.cpp:14:46: error: template argument 3 is invalid
photo.cpp:24:6: error: request for member ‘push’ in ‘pq’, which is of non-class type ‘int’
24 | pq.push({a[i][0], i});
| ^~~~
photo.cpp:28:12: error: request for member ‘top’ in ‘pq’, which is of non-class type ‘int’
28 | val = pq.top().fi;
|