bank.cpp: In function 'bool dfs(int64_t, std::vector<long int>&)':
bank.cpp:19:27: warning: comparison of integer expressions of different signedness: 'int64_t' {aka 'long int'} and 'std::vector<long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
19 | for (int j = 0; j < tmp.size(); j++)
| ~~^~~~~~~~~~~~
bank.cpp:24:31: warning: comparison of integer expressions of different signedness: 'int64_t' {aka 'long int'} and 'std::vector<long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
24 | for (int j = 0; j < tmp.size(); j++)
| ~~^~~~~~~~~~~~
bank.cpp: In function 'int32_t main()':
bank.cpp:39:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
39 | freopen("hi.inp", "r", stdin);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~