Problem | exhibition2 |
---|---|
User | plka |
Submission Time | 2025-02-19 14:17:37 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
exhibition2.cpp: In function ‘int main()’:
exhibition2.cpp:18:5: error: ‘sort’ was not declared in this scope; did you mean ‘qsort’?
18 | sort(artworks.begin(), artworks.end(), [](const Artwork &a, const Artwork &b) {
| ^~~~
| qsort
exhibition2.cpp:22:28: error: ‘LLONG_MIN’ was not declared in this scope
22 | long long max_result = LLONG_MIN;
| ^~~~~~~~~
exhibition2.cpp:3:1: note: ‘LLONG_MIN’ is defined in header ‘<climits>’; did you forget to ‘#include <climits>’?
2 | #include <vector>
+++ |+#include <climits>
3 | using namespace std;
exhibition2.cpp:23:5: error: ‘multiset’ was not declared in this scope
23 | multiset<long long> values;
| ^~~~~~~~
exhibition2.cpp:3:1: note: ‘std::multiset’ is defined in header ‘<set>’; did you forget to ‘#include <set>’?
2 | #include <vector>
+++ |+#includ