Problem shorten
User reporter
Submission Time 2023-01-11 00:50:19
Score 0
Max Time N/A
Max Memory N/A

Compile Error

shorten.cpp: In function ‘int main()’:
shorten.cpp:24:20: error: ‘assert’ was not declared in this scope
24 | cin >> N >> K; assert(N < 11);
| ^~~~~~
shorten.cpp:4:1: note: ‘assert’ is defined in header ‘<cassert>’; did you forget to ‘#include <cassert>’?
3 | #include <algorithm>
+++ |+#include <cassert>
4 | #include <vector>