school.cpp: In function 'int main()':
school.cpp:21:35: warning: comparison of integer expressions of different signedness: 'std::priority_queue<int, std::vector<int>, std::greater<int> >::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
21 | while(!q.empty()&&q.size()>m)sum-=q.top(),q.pop();
| ~~~~~~~~^~
school.cpp:26:35: warning: comparison of integer expressions of different signedness: 'std::priority_queue<int, std::vector<int>, std::greater<int> >::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
26 | while(!q.empty()&&q.size()>s)sum-=q.top(),q.pop();
| ^