Main.cpp: In function 'int main()':
Main.cpp:27:22: warning: comparison of integer expressions of different signedness: 'uint32_t' {aka 'unsigned int'} and 'int' [-Wsign-compare]
27 | if (adjmax[i][j] == -1) adjmax[i][j] = max(adjmax[i][k], adjmax[k][j]);
| ~~~~~~~~~~~~~^~~~~
Main.cpp:34:20: warning: comparison of integer expressions of different signedness: 'uint32_t' {aka 'unsigned int'} and 'int' [-Wsign-compare]
34 | if (adjmax[a][b] != -1 && p >= adjmax[a][b]) cout << "TAIP";
| ~~~~~~~~~~~~~^~~~~
Main.cpp:34:31: warning: comparison of integer expressions of different signedness: 'int' and 'uint32_t' {aka 'unsigned int'} [-Wsign-compare]
34 | if (adjmax[a][b] != -1 && p >= adjmax[a][b]) cout << "TAIP";
| ~~^~~~~~~~~~~~~~~