biochips.cpp: In function 'int ident(int)':
biochips.cpp:43:2: error: 'po' was not declared in this scope; did you mean 'pom'?
43 | po^=26736;
| ^~
| pom
biochips.cpp: In function 'int main()':
biochips.cpp:72:9: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
72 | if (i!=svi.size()-1) dp[i][j]=max(dp[i][j], dp[i+1][j]);
| ~^~~~~~~~~~~~~~
biochips.cpp:74:17: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
74 | if (r[svi[i]]<svi.size()) dp[i][j]=max(dp[i][j], dp[r[svi[i]]][j-1]+w[svi[i]]);
| ~~~~~~~~~^~~~~~~~~~~
biochips.cpp:80:17: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
80 | for (int i=0; i<svi.size(); i++) ress=max(ress, dp[i][m]);
| ~^~~~~~~~~~~