wiring.cpp:10:2: error: invalid preprocessing directive #defint; did you mean #define?
10 | #defint int ll
| ^~~~~~
| define
wiring.cpp:12:17: warning: overflow in conversion from 'double' to 'int' changes value from '1.0e+18' to '2147483647' [-Woverflow]
12 | const int INF = 1e18;
| ^~~~
wiring.cpp:14:5: error: ambiguating new declaration of 'int min_total_length(std::vector<int>, std::vector<int>)'
14 | int min_total_length(vector<signed> R, vector<signed> B) {
| ^~~~~~~~~~~~~~~~
In file included from wiring.cpp:1:
wiring.h:3:11: note: old declaration 'long long int min_total_length(std::vector<int>, std::vector<int>)'
3 | long long min_total_length(std::vector<int> r, std::vector<int> b);
| ^~~~~~~~~~~~~~~~