Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <bits/stdc++.h>
- using namespace std;
- ////////////////////////////
- // Animal Class Hierarchy
- ////////////////////////////
- class Animal {
- protected:
- string name;
- int days;
- public:
- Animal(const string &n, int d) : name(n), days(d) {}
- virtual ~Animal() {}
- string getName() const { return name; }
- int getDaysLived() const { return days; }
- void setDaysLived(int d) { days = d; }
- virtual void sayName() const {
- cout << "My name is " << name << ", days lived: " << days << "\n";
- }
- virtual void attack(Animal &other) const = 0; // For ATTACK command
- virtual int getLevel() const = 0; // 1: base, 2: better, 3: monster
- virtual string getTypeCode() const = 0; // e.g., "M", "BM", etc.
- virtual string getClassName() const = 0; // e.g., "Mouse", "BetterMouse", etc.
- };
- // ----- Mouse Types -----
- class Mouse : public Animal {
- public:
- Mouse(const string &n, int d) : Animal(n, d) {}
- void attack(Animal &other) const override { cout << "Mouse is attacking\n"; }
- int getLevel() const override { return 1; }
- string getTypeCode() const override { return "M"; }
- string getClassName() const override { return "Mouse"; }
- };
- class BetterMouse : public Animal {
- public:
- BetterMouse(const string &n, int d) : Animal(n, d) {}
- void attack(Animal &other) const override { cout << "BetterMouse is attacking\n"; }
- int getLevel() const override { return 2; }
- string getTypeCode() const override { return "BM"; }
- string getClassName() const override { return "BetterMouse"; }
- };
- class MonsterMouse : public Animal {
- public:
- MonsterMouse(const string &n) : Animal(n, 1) {} // Monster lives at most 1 day
- void attack(Animal &other) const override { cout << "MonsterMouse is attacking\n"; }
- int getLevel() const override { return 3; }
- string getTypeCode() const override { return "MonsterMouse"; }
- string getClassName() const override { return "MonsterMouse"; }
- };
- // ----- Bird Types -----
- class Bird : public Animal {
- public:
- Bird(const string &n, int d) : Animal(n, d) {}
- void attack(Animal &other) const override { cout << "Bird is attacking\n"; }
- int getLevel() const override { return 1; }
- string getTypeCode() const override { return "B"; }
- string getClassName() const override { return "Bird"; }
- };
- class BetterBird : public Animal {
- public:
- BetterBird(const string &n, int d) : Animal(n, d) {}
- void attack(Animal &other) const override { cout << "BetterBird is attacking\n"; }
- int getLevel() const override { return 2; }
- string getTypeCode() const override { return "BB"; }
- string getClassName() const override { return "BetterBird"; }
- };
- class MonsterBird : public Animal {
- public:
- MonsterBird(const string &n) : Animal(n, 1) {}
- void attack(Animal &other) const override { cout << "MonsterBird is attacking\n"; }
- int getLevel() const override { return 3; }
- string getTypeCode() const override { return "MonsterBird"; }
- string getClassName() const override { return "MonsterBird"; }
- };
- // ----- Fish Types -----
- class Fish : public Animal {
- public:
- Fish(const string &n, int d) : Animal(n, d) {}
- void attack(Animal &other) const override { cout << "Fish is attacking\n"; }
- int getLevel() const override { return 1; }
- string getTypeCode() const override { return "F"; }
- string getClassName() const override { return "Fish"; }
- };
- class BetterFish : public Animal {
- public:
- BetterFish(const string &n, int d) : Animal(n, d) {}
- void attack(Animal &other) const override { cout << "BetterFish is attacking\n"; }
- int getLevel() const override { return 2; }
- string getTypeCode() const override { return "BF"; }
- string getClassName() const override { return "BetterFish"; }
- };
- class MonsterFish : public Animal {
- public:
- MonsterFish(const string &n) : Animal(n, 1) {}
- void attack(Animal &other) const override { cout << "MonsterFish is attacking\n"; }
- int getLevel() const override { return 3; }
- string getTypeCode() const override { return "MonsterFish"; }
- string getClassName() const override { return "MonsterFish"; }
- };
- //////////////////////////////
- // Container Templates //
- //////////////////////////////
- template <typename T>
- class Cage {
- public:
- vector<T*> animals;
- void add(T* a) {
- animals.push_back(a);
- sortContainer();
- }
- T* get(int pos) {
- if(pos < 0 || pos >= (int)animals.size()) return nullptr;
- return animals[pos];
- }
- void remove(int pos) {
- if(pos < 0 || pos >= (int)animals.size()) return;
- delete animals[pos];
- animals.erase(animals.begin() + pos);
- }
- int size() { return (int)animals.size(); }
- void sortContainer() {
- sort(animals.begin(), animals.end(), [](T* a, T* b){
- if(a->getDaysLived() != b->getDaysLived())
- return a->getDaysLived() < b->getDaysLived();
- return a->getName() < b->getName();
- });
- }
- void updatePeriod() {
- for(auto a : animals)
- a->setDaysLived(a->getDaysLived() + 1);
- vector<int> dead;
- for (int i = 0; i < (int)animals.size(); i++){
- bool isMonster = (animals[i]->getLevel() == 3);
- if((!isMonster && animals[i]->getDaysLived() > 10) ||
- (isMonster && animals[i]->getDaysLived() > 1))
- dead.push_back(i);
- }
- for (int idx : dead)
- cout << animals[idx]->getName() << " has died of old days\n";
- for (int i = dead.size()-1; i >= 0; i--){
- int idx = dead[i];
- delete animals[idx];
- animals.erase(animals.begin()+idx);
- }
- sortContainer();
- }
- };
- template <> class Cage<Fish> {
- public:
- Cage() { throw runtime_error("Cage<Fish> is forbidden"); }
- };
- template <typename T>
- class Aquarium {
- public:
- vector<T*> animals;
- void add(T* a) {
- animals.push_back(a);
- sortContainer();
- }
- T* get(int pos) {
- if(pos < 0 || pos >= (int)animals.size()) return nullptr;
- return animals[pos];
- }
- void remove(int pos) {
- if(pos < 0 || pos >= (int)animals.size()) return;
- delete animals[pos];
- animals.erase(animals.begin() + pos);
- }
- int size() { return (int)animals.size(); }
- void sortContainer() {
- sort(animals.begin(), animals.end(), [](T* a, T* b){
- if(a->getDaysLived() != b->getDaysLived())
- return a->getDaysLived() < b->getDaysLived();
- return a->getName() < b->getName();
- });
- }
- void updatePeriod() {
- for(auto a : animals)
- a->setDaysLived(a->getDaysLived() + 1);
- vector<int> dead;
- for (int i = 0; i < (int)animals.size(); i++){
- bool isMonster = (animals[i]->getLevel() == 3);
- if((!isMonster && animals[i]->getDaysLived() > 10) ||
- (isMonster && animals[i]->getDaysLived() > 1))
- dead.push_back(i);
- }
- for (int idx : dead)
- cout << animals[idx]->getName() << " has died of old days\n";
- for (int i = dead.size()-1; i >= 0; i--){
- int idx = dead[i];
- delete animals[idx];
- animals.erase(animals.begin()+idx);
- }
- sortContainer();
- }
- };
- template <> class Aquarium<Bird> {
- public:
- Aquarium() { throw runtime_error("Aquarium<Bird> is forbidden"); }
- };
- template <typename A>
- class Freedom {
- public:
- vector<A*> animals;
- void add(A* a) {
- animals.push_back(a);
- sortContainer();
- }
- A* get(int pos) {
- if(pos < 0 || pos >= (int)animals.size()) return nullptr;
- return animals[pos];
- }
- void remove(int pos) {
- if(pos < 0 || pos >= (int)animals.size()) return;
- delete animals[pos];
- animals.erase(animals.begin() + pos);
- }
- int size() { return (int)animals.size(); }
- void sortContainer() {
- sort(animals.begin(), animals.end(), [](A* a, A* b){
- if(a->getDaysLived() != b->getDaysLived())
- return a->getDaysLived() < b->getDaysLived();
- return a->getName() < b->getName();
- });
- }
- void updatePeriod() {
- for(auto a : animals)
- a->setDaysLived(a->getDaysLived() + 1);
- vector<int> dead;
- for (int i = 0; i < (int)animals.size(); i++){
- bool isMonster = (animals[i]->getLevel() == 3);
- if((!isMonster && animals[i]->getDaysLived() > 10) ||
- (isMonster && animals[i]->getDaysLived() > 1))
- dead.push_back(i);
- }
- for (int idx : dead)
- cout << animals[idx]->getName() << " has died of old days\n";
- for (int i = dead.size()-1; i >= 0; i--){
- int idx = dead[i];
- delete animals[idx];
- animals.erase(animals.begin()+idx);
- }
- sortContainer();
- }
- };
- //////////////////////////////////
- // Global Containers (in order)
- //////////////////////////////////
- // Order: Cage<Bird>, Cage<BetterBird>, Cage<Mouse>, Cage<BetterMouse>,
- // Aquarium<Fish>, Aquarium<BetterFish>, Aquarium<Mouse>, Aquarium<BetterMouse>,
- // Freedom<Animal>
- Cage<Bird> cageBird;
- Cage<BetterBird> cageBetterBird;
- Cage<Mouse> cageMouse;
- Cage<BetterMouse> cageBetterMouse;
- Aquarium<Fish> aquariumFish;
- Aquarium<BetterFish> aquariumBetterFish;
- Aquarium<Mouse> aquariumMouse;
- Aquarium<BetterMouse> aquariumBetterMouse;
- Freedom<Animal> freedom;
- //////////////////////////////
- // Helper Functions //
- //////////////////////////////
- // Place an animal into the appropriate container.
- void placeAnimal(Animal* a, const string &type, const string &cont) {
- if(cont=="Cage"){
- if(type=="M") cageMouse.add((Mouse*)a);
- else if(type=="BM") cageBetterMouse.add((BetterMouse*)a);
- else if(type=="B") cageBird.add((Bird*)a);
- else if(type=="BB") cageBetterBird.add((BetterBird*)a);
- } else if(cont=="Aquarium"){
- if(type=="F") aquariumFish.add((Fish*)a);
- else if(type=="BF") aquariumBetterFish.add((BetterFish*)a);
- else if(type=="M") aquariumMouse.add((Mouse*)a);
- else if(type=="BM") aquariumBetterMouse.add((BetterMouse*)a);
- } else if(cont=="Freedom"){
- freedom.add(a);
- }
- }
- // Get an animal from the specified container.
- Animal* getAnimal(const string &cont, const string &type, int pos) {
- if(cont=="Cage"){
- if(type=="M") return cageMouse.get(pos);
- else if(type=="BM") return cageBetterMouse.get(pos);
- else if(type=="B") return cageBird.get(pos);
- else if(type=="BB") return cageBetterBird.get(pos);
- } else if(cont=="Aquarium"){
- if(type=="F") return aquariumFish.get(pos);
- else if(type=="BF") return aquariumBetterFish.get(pos);
- else if(type=="M") return aquariumMouse.get(pos);
- else if(type=="BM") return aquariumBetterMouse.get(pos);
- } else if(cont=="Freedom"){
- return freedom.get(pos);
- }
- return nullptr;
- }
- // Remove an animal from the specified container.
- void removeAnimal(const string &cont, const string &type, int pos) {
- if(cont=="Cage"){
- if(type=="M") cageMouse.remove(pos);
- else if(type=="BM") cageBetterMouse.remove(pos);
- else if(type=="B") cageBird.remove(pos);
- else if(type=="BB") cageBetterBird.remove(pos);
- } else if(cont=="Aquarium"){
- if(type=="F") aquariumFish.remove(pos);
- else if(type=="BF") aquariumBetterFish.remove(pos);
- else if(type=="M") aquariumMouse.remove(pos);
- else if(type=="BM") aquariumBetterMouse.remove(pos);
- } else if(cont=="Freedom"){
- freedom.remove(pos);
- }
- }
- //////////////////////////////
- // Command Implementations //
- //////////////////////////////
- // CREATE <TYPE> <NAME> IN <CONTAINER> <N>
- void commandCreate(const string &type, const string &name, const string &container, int d) {
- Animal* a = nullptr;
- if(type=="M") a = new Mouse(name, d);
- else if(type=="BM") a = new BetterMouse(name, d);
- else if(type=="B") a = new Bird(name, d);
- else if(type=="BB") a = new BetterBird(name, d);
- else if(type=="F") a = new Fish(name, d);
- else if(type=="BF") a = new BetterFish(name, d);
- placeAnimal(a, type, container);
- cout << "My name is " << name << ", days lived: " << d << "\n";
- }
- // APPLY_SUBSTANCE <CONTAINER> <TYPE> <POS>
- void commandApplySubstance(const string &container, const string &type, int pos) {
- if(container=="Freedom"){
- cout << "Substance cannot be applied in freedom\n";
- return;
- }
- Animal* a = getAnimal(container, type, pos);
- if(!a){
- cout << "Animal not found\n";
- return;
- }
- int lvl = a->getLevel();
- string nm = a->getName();
- int d = a->getDaysLived();
- if(lvl == 1) { // base -> better
- int newDays = (d + 1) / 2;
- removeAnimal(container, type, pos);
- Animal* b = nullptr;
- string newType;
- if(type=="M") { b = new BetterMouse(nm, newDays); newType = "BM"; }
- else if(type=="B") { b = new BetterBird(nm, newDays); newType = "BB"; }
- else if(type=="F") { b = new BetterFish(nm, newDays); newType = "BF"; }
- placeAnimal(b, newType, container);
- } else if(lvl == 2) { // better -> monster
- removeAnimal(container, type, pos);
- Animal* m = nullptr;
- if(type=="BM") m = new MonsterMouse(nm);
- else if(type=="BB") m = new MonsterBird(nm);
- else if(type=="BF") m = new MonsterFish(nm);
- // Kill all remaining animals in that container (of that type group) silently.
- if(container=="Cage"){
- if(type=="BM"){
- while(cageBetterMouse.size() > 0)
- cageBetterMouse.remove(0);
- } else if(type=="BB"){
- while(cageBetterBird.size() > 0)
- cageBetterBird.remove(0);
- }
- } else if(container=="Aquarium"){
- if(type=="BM"){
- while(aquariumBetterMouse.size() > 0)
- aquariumBetterMouse.remove(0);
- } else if(type=="BF"){
- while(aquariumBetterFish.size() > 0)
- aquariumBetterFish.remove(0);
- }
- }
- freedom.add(m);
- }
- // If already monster, do nothing.
- }
- // REMOVE_SUBSTANCE <CONTAINER> <TYPE> <POS>
- void commandRemoveSubstance(const string &container, const string &type, int pos) {
- if(container=="Freedom"){
- cout << "Substance cannot be removed in freedom\n";
- return;
- }
- Animal* a = getAnimal(container, type, pos);
- if(!a){
- cout << "Animal not found\n";
- return;
- }
- if(a->getLevel() != 2){
- cout << "Invalid substance removal\n";
- return;
- }
- int newDays = a->getDaysLived() * 2;
- string nm = a->getName();
- removeAnimal(container, type, pos);
- Animal* base = nullptr;
- string baseType;
- if(type=="BM") { base = new Mouse(nm, newDays); baseType = "M"; }
- else if(type=="BB") { base = new Bird(nm, newDays); baseType = "B"; }
- else if(type=="BF") { base = new Fish(nm, newDays); baseType = "F"; }
- placeAnimal(base, baseType, container);
- }
- // ATTACK <CONTAINER> <TYPE> <POS1> <POS2>
- // Print "<AnimalClassName> is attacking" and remove the attacked animal (at pos2).
- void commandAttack(const string &container, const string &type, int pos1, int pos2) {
- if(container=="Freedom"){
- cout << "Animals cannot attack in Freedom\n";
- return;
- }
- if(pos1 == pos2) return;
- Animal* a1 = getAnimal(container, type, pos1);
- Animal* a2 = getAnimal(container, type, pos2);
- if(!a1 || !a2){
- cout << "Animal not found\n";
- return;
- }
- cout << a1->getClassName() << " is attacking\n";
- removeAnimal(container, type, pos2);
- }
- // TALK <CONTAINER> <TYPE> <POS>
- // For Freedom, no type is provided.
- void commandTalk(const string &container, const string &type, int pos) {
- Animal* a = (container=="Freedom" ? freedom.get(pos) : getAnimal(container, type, pos));
- if(!a){
- cout << "Animal not found\n";
- return;
- }
- a->sayName();
- }
- // PERIOD: Update containers in the order:
- // Cage<Bird>, Cage<BetterBird>, Cage<Mouse>, Cage<BetterMouse>,
- // Aquarium<Fish>, Aquarium<BetterFish>, Aquarium<Mouse>, Aquarium<BetterMouse>,
- // Freedom<Animal>
- void commandPeriod() {
- cageBird.updatePeriod();
- cageBetterBird.updatePeriod();
- cageMouse.updatePeriod();
- cageBetterMouse.updatePeriod();
- aquariumFish.updatePeriod();
- aquariumBetterFish.updatePeriod();
- aquariumMouse.updatePeriod();
- aquariumBetterMouse.updatePeriod();
- freedom.updatePeriod();
- }
- //////////////////////
- // Main Entry Point //
- //////////////////////
- int main(){
- ios::sync_with_stdio(false);
- cin.tie(nullptr);
- int C;
- cin >> C;
- cin.ignore(numeric_limits<streamsize>::max(), '\n');
- while(C--){
- string line;
- getline(cin, line);
- if(line.empty()) continue;
- stringstream ss(line);
- string cmd; ss >> cmd;
- if(cmd=="CREATE"){
- string type, name, inWord, container;
- int d;
- ss >> type >> name >> inWord >> container >> d;
- commandCreate(type, name, container, d);
- } else if(cmd=="APPLY_SUBSTANCE"){
- string container, type; int pos;
- ss >> container >> type >> pos;
- commandApplySubstance(container, type, pos);
- } else if(cmd=="REMOVE_SUBSTANCE"){
- string container, type; int pos;
- ss >> container >> type >> pos;
- commandRemoveSubstance(container, type, pos);
- } else if(cmd=="ATTACK"){
- string container, type; int pos1, pos2;
- ss >> container >> type >> pos1 >> pos2;
- commandAttack(container, type, pos1, pos2);
- } else if(cmd=="TALK"){
- string container;
- ss >> container;
- if(container=="Freedom"){
- int pos;
- ss >> pos;
- commandTalk(container, "", pos);
- } else {
- string type; int pos;
- ss >> type >> pos;
- commandTalk(container, type, pos);
- }
- } else if(cmd=="PERIOD"){
- commandPeriod();
- }
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement