https://school.programmers.co.kr/learn/courses/30/lessons/159994#
goal 배열을 순차 탐색하면 해결 가능
#include <string>
#include <vector>
#include <queue>
#include <algorithm>
using namespace std;
queue<string> c1, c2, g;
void copyQueue(vector<string>& v, queue<string>& q){
for(int i = 0;i<v.size();i++)
q.push(v[i]);
}
string solution(vector<string> cards1, vector<string> cards2, vector<string> goal) {
string answer = "";
// 선입선출을 위한 큐로의 복사
copyQueue(cards1,c1);
copyQueue(cards2,c2);
for(int i = 0;i<goal.size();i++){
string target = goal[i];
if(c1.front()==target){
c1.pop();
}
else if(c2.front()==target){
c2.pop();
}
else{
return "No";
}
}
return "Yes";
}
'Programmers Review' 카테고리의 다른 글
[Lv 1] 덧칠하기 (0) | 2024.06.13 |
---|---|
[Lv 1] 대충 만든 자판 (0) | 2024.06.13 |
[Lv 1] 개인정보 수집 유효기간 (0) | 2024.06.13 |
[Lv 1] 둘만의 암호 (0) | 2024.06.08 |
[Lv 1] 문자열 나누기 (0) | 2024.06.08 |