[알고리즘] 백준 11586 - 지영 공주님의 마법 거울 (C++) [문제 링크] : https://www.acmicpc.net/problem/11586#include #include #include using namespace std;int main(){ int N, M; cin >> N; vector V; while(N--){ string S; cin >> S; V.push_back(S); } cin >> M; if(M == 1){ for(int i=0; i 알고리즘 2024.12.25