mirror of
https://gitlab.com/mfocko/LeetCode.git
synced 2024-11-09 15:59:06 +01:00
40 lines
800 B
C++
40 lines
800 B
C++
#include <cassert>
|
|
|
|
class ParkingSystem {
|
|
int big;
|
|
int medium;
|
|
int small;
|
|
|
|
int &get(int carType) {
|
|
switch (carType) {
|
|
case 1:
|
|
return big;
|
|
case 2:
|
|
return medium;
|
|
case 3:
|
|
return small;
|
|
default:
|
|
assert(false);
|
|
}
|
|
}
|
|
|
|
public:
|
|
ParkingSystem(int big, int medium, int small)
|
|
: big(big), medium(medium), small(small) {}
|
|
|
|
bool addCar(int carType) {
|
|
auto &space = get(carType);
|
|
if (space <= 0) {
|
|
return false;
|
|
}
|
|
|
|
--space;
|
|
return true;
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Your ParkingSystem object will be instantiated and called as such:
|
|
* ParkingSystem* obj = new ParkingSystem(big, medium, small);
|
|
* bool param_1 = obj->addCar(carType);
|
|
*/
|