prog.cpp: In member function ‘long long int Solution::minimumPossibleSum(int, int)’:
prog.cpp:6:9: error: ‘unordered_map’ was not declared in this scope
unordered_map<int,int>m;
^~~~~~~~~~~~~
prog.cpp:6:23: error: expected primary-expression before ‘int’
unordered_map<int,int>m;
^~~
prog.cpp:12:16: error: ‘m’ was not declared in this scope
if(m.find(i) == m.end())
^
prog.cpp:17:13: error: ‘m’ was not declared in this scope
m[target-i]++;
^