Problem catlunch
User Dejitansuki
Submission Time 2023-04-25 15:20:17
Score 0
Max Time N/A
Max Memory N/A

Compile Error

catlunch.cpp: In function ‘int main()’:
catlunch.cpp:7:5: error: ‘ios_base’ has not been declared
7 | ios_base::sync_with_stdio(false),cin.tie(0);//cin & cout are very slow, this line helps speed them up
| ^~~~~~~~
catlunch.cpp:7:38: error: ‘cin’ was not declared in this scope
7 | ios_base::sync_with_stdio(false),cin.tie(0);//cin & cout are very slow, this line helps speed them up
| ^~~
catlunch.cpp:1:1: note: ‘std::cin’ is defined in header ‘<iostream>’; did you forget to ‘#include <iostream>’?
+++ |+#include <iostream>
1 | #define ll long long
catlunch.cpp:16:5: error: ‘multiset’ was not declared in this scope
16 | multiset<ll, greater<ll>> v;
| ^~~~~~~~
catlunch.cpp:1:1: note: ‘std::multiset’ is defined in header ‘<set>’; did you forget to ‘#include <set>’?
+++ |+#include <set>
1 | #define ll lo