#include #include #include #include using namespace std;// PotionRecipe 클래스: 재료 목록을 vector으로 변경class PotionRecipe {public: string potionName; vector ingredients; // 단일 재료에서 재료 '목록'으로 변경 // 생성자: 재료 목록을 받아 초기화하도록 수정 PotionRecipe(const string& name, const vector& ingredients) : potionName(name), ingredients(ingredients) { }};// StockManager 클래스: 레시피 재고 관리class StockManager {pr..