dango3.cpp: In function 'void Solve(int, int)':
dango3.cpp:33:3: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
33 | for(int j = i * n; j < r; j ++)
| ^~~
dango3.cpp:35:4: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
35 | const auto rem = [&](const auto x) {
| ^~~~~
dango3.cpp: In instantiation of 'Solve(int, int)::<lambda(auto:23)> [with auto:23 = int]':
dango3.cpp:47:11: required from here
dango3.cpp:36:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
36 | for(int i = 0; i < now.size(); i ++) {
| ~~^~~~~~~~~~~~
dango3.cpp: At global scope:
dango3.cpp:8:5: warning: '{anonymous}::variable_example' defined but not used [-Wunused-variable]
8 | int variable_example = 1;
| ^~~~~~~~~~~~~~~~