match.cpp: In function 'int main()':
match.cpp:27:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
27 | for (int i = 0; i < t.size(); ++i)
| ~~^~~~~~~~~~
match.cpp:41:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
41 | for (int i = 0; i < t.size(); ++i)
| ~~^~~~~~~~~~
match.cpp:49:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
49 | for (int j = 1; j < tab[i].size(); ++j)
| ~~^~~~~~~~~~~~~~~
match.cpp:63:29: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
63 | for (int k = lst; k < tab[i].size(); ++k)
| ~~^~~~~~~~~~~~~~~
match.cpp:66:17: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
66 | if(a<=(tab[i].size()-lst)/2) ans[tab[i][k]]='(';
| ~^~~~~~~~~~~~~~~~~~~~~~~