-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinventory_management.cpp
65 lines (57 loc) · 1.8 KB
/
inventory_management.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#include <iostream>
#include <string>
#include <cctype>
#include <unordered_map>
using namespace std;
int main(){
unordered_map <int, int> map;
string buffer;
string instruction;
long int product, count;
char *end;
size_t pos = 0;
while(getline(cin, buffer)){
//instruction
pos = buffer.find(" ");
instruction = buffer.substr(0, pos);
buffer.erase(0, pos + 1);
//query instruction
if(instruction == "QUERY"){
//product
pos = buffer.find(" ");
product = strtol(buffer.substr(0, pos).c_str(), &end, 10);
buffer.erase(0, pos + 1);
auto it = map.find(product);
if(it == map.end())
cout << '0' << endl;
else
cout << it -> second << endl;
}
//count
else{
pos = buffer.find(" ");
count = strtol(buffer.substr(0, pos).c_str(), &end, 10);
buffer.erase(0, pos + 1);
pos = buffer.find(" ");
product = strtol(buffer.substr(0, pos).c_str(), &end, 10);
//add instuction
if(instruction == "ADD"){
auto it = map.find(product);
//product doesn't exist: create new
if(it == map.end())
map.insert(pair<int, int>(product, count));
//product exists: increment count
else
it->second += count;
}
//remove instruction
else{
auto it = map.find(product);
if(it == map.end() || it->second < count)
cout << "removal refused" << endl;
else
it->second = it->second - count;
}
}
}
}