bank.cpp: In function 'bool dfs(int64_t, std::vector<long int>&)':
bank.cpp:21: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]
21 | for (int j = 0; j < tmp.size(); j++)
| ~~^~~~~~~~~~~~
bank.cpp:26: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]
26 | for (int j = 0; j < tmp.size(); j++)
| ~~^~~~~~~~~~~~
bank.cpp:31:43: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
31 | return dp[{pos, tmp}] = true;
bank.cpp:35:27: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
35 | return dp[{pos, tmp}] = false;
bank.cpp: In function 'int32_t main()':
bank.cpp:41:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
41 | freopen("hi.inp", "r", stdin);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~