overtaking.cpp: In function 'void init(int, int, std::vector<long long int>, std::vector<int>, int, int, std::vector<int>)':
overtaking.cpp:15:22: warning: comparison of integer expressions of different signedness: 'll' {aka 'long long int'} and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
15 | for (ll i = 0; i < s1.size(); i++) s[i] = s1[i];
| ~~^~~~~~~~~~~
overtaking.cpp:44:24: warning: comparison of integer expressions of different signedness: 'll' {aka 'long long int'} and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
44 | if (id < tCur[t].size() && curTime == tCur[t][id]) {
| ~~~^~~~~~~~~~~~~~~~
overtaking.cpp:61:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
61 | for (int i = 0; i < tmpCur.size(); i++) {
| ~~^~~~~~~~~~~~~~~
overtaking.cpp:73:24: warning: comparison of integer expressions of different signedness: 'll' {aka 'long long int'} and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
73 | while (idA < tmpCur.size() && tmpCur[idA] <= curTime) idA++;
| ~~~~^~~~~~~~~~~~~~~
overtaking.cpp:79:28: warning: comparison of integer expressions of different signedness: 'll' {aka 'long long int'} and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
79 | while (idB < tCur[t+1].size() && tCur[t+1][idB] <= nxt) idB++;
| ~~~~^~~~~~~~~~~~~~~~~~
overtaking.cpp:82:28: warning: comparison of integer expressions of different signedness: 'll' {aka 'long long int'} and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
82 | while (idB < tCur[t+1].size() && tCur[t+1][idB] < nxt) idB++;
| ~~~~^~~~~~~~~~~~~~~~~~
overtaking.cpp:91:24: warning: comparison of integer expressions of different signedness: 'll' {aka 'long long int'} and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
91 | if (id < tCur[t].size() && curTime == tCur[t][id]) {
| ~~~^~~~~~~~~~~~~~~~
overtaking.cpp:12:8: warning: unused variable 'l' [-Wunused-variable]
12 | ll l = l1;
| ^