/in/foo.cc: In function 'int main()':
/in/foo.cc:57:37: warning: format '%u' expects argument of type 'unsigned int', but argument 2 has type 'std::priority_queue<int>::size_type' {aka 'long unsigned int'} [-Wformat=]
57 | if (T <= num[n - 1].h) printf("%u", que.size());
| ~^ ~~~~~~~~~~
| | |
| | std::priority_queue<int>::size_type {aka long unsigned int}
| unsigned int
| %lu
/in/foo.cc:58:19: warning: format '%u' expects argument of type 'unsigned int', but argument 2 has type 'std::priority_queue<int>::size_type' {aka 'long unsigned int'} [-Wformat=]
58 | else printf("%u", que.size()-1);
| ~^ ~~~~~~~~~~~~
| | |
| unsigned int std::priority_queue<int>::size_type {aka long unsigned int}
| %lu