souvenirs.cpp: In function 'void buy_souvenirs(int, long long int)':
souvenirs.cpp:2:5: error: 'vector' was not declared in this scope
2 | vector<long long> bestM(N, -1);
| ^~~~~~
souvenirs.cpp:2:12: error: expected primary-expression before 'long'
2 | vector<long long> bestM(N, -1);
| ^~~~
souvenirs.cpp:5:20: error: 'transaction' was not declared in this scope
5 | auto res = transaction(M);
| ^~~~~~~~~~~
souvenirs.cpp:7:17: error: 'bestM' was not declared in this scope
7 | if (bestM[t] == -1)
| ^~~~~
souvenirs.cpp:14:25: error: 'bestM' was not declared in this scope
14 | transaction(bestM[i]);
| ^~~~~
souvenirs.cpp:14:13: error: 'transaction' was not declared in this scope
14 | transaction(bestM[i]);
| ^~~~~~~~~~~