kitchen.cpp:61:5: warning: "/*" within comment [-Wcomment]
61 | /*s = rep;
|
kitchen.cpp: In function 'int main()':
kitchen.cpp:33:42: warning: comparison of integer expressions of different signedness: 'std::set<long long int>::size_type' {aka 'long unsigned int'} and 'long long int' [-Wsign-compare]
33 | while(!x.empty() && track.size() < k && a[i] > 0){
| ~~~~~~~~~~~~~^~~
kitchen.cpp:46:25: warning: comparison of integer expressions of different signedness: 'std::set<long long int>::size_type' {aka 'long unsigned int'} and 'long long int' [-Wsign-compare]
46 | if(track.size() < k){
| ~~~~~~~~~~~~~^~~
kitchen.cpp:50:26: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<std::pair<long long int, long long int>, std::allocator<std::pair<long long int, long long int> > >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
50 | for(int j = 0; j < used.size(); j++){
| ~~^~~~~~~~~~~~~
kitchen.cpp:19:25: warning: unused variable 'ans' [-Wunused-variable]
19 | int n,m,k, tot = 0, ans = 1e18, hours = 0; cin >> n >> m >> k;
| ^~~