I'm trying to make an unordered_map, in which the key is vector and the value is int. I can't use a map, because the time complexity for access is O(log n), while I need O(1). However, unordered_map pops out this error:
error: static assertion failed: hash function must be invocable with an argument of key type
what should I do?