Problem gymbadges
User Pan
Submission Time 2023-11-01 16:54:27
Score 0
Max Time N/A
Max Memory N/A

Compile Error

gymbadges.cpp: In function ‘int main()’:
gymbadges.cpp:49:46: error: ‘LLONG_MAX’ was not declared in this scope
49 | vector<vector<ll > > dp(n+1,vector<ll>(n+1, LLONG_MAX));
| ^~~~~~~~~
gymbadges.cpp:6:1: note: ‘LLONG_MAX’ is defined in header ‘<climits>’; did you forget to ‘#include <climits>’?
5 | #include <map>
+++ |+#include <climits>
6 | using namespace std;