| Problem | markinghouses |
|---|---|
| User | Pan |
| Submission Time | 2023-11-26 16:02:34 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
markinghouses.cpp: In function ‘int main()’:
markinghouses.cpp:13:49: error: ‘LLONG_MAX’ was not declared in this scope
13 | vector<vector<ll > >dp0(n+1, vector<ll> (k+1, -LLONG_MAX));
| ^~~~~~~~~
markinghouses.cpp:4:1: note: ‘LLONG_MAX’ is defined in header ‘<climits>’; did you forget to ‘#include <climits>’?
3 | #include <algorithm>
+++ |+#include <climits>
4 | using namespace std;