백준 9996 한국이 그리울 땐 서버에 접속하지 [c++]


백준 9996 한국이 그리울 땐 서버에 접속하지 [c++]

#define _CRT_SECURE_NO_WARNINGS #include #include #include #include #include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); string pt; string temp; vectorv; int n; cin >> n;//문자열개수입력 cin >> pt;//문자열패턴입력 for (int i = 0; i < n; i++) { cin >> temp;//확인할 문자열 입력 stacks; for (int j = pt.size() - 1; j >= 0; j--)//패턴을 stack에 역순으로 저장, stack의 구조상 꺼낼때 패턴의 앞부터 ..


원문링크 : 백준 9996 한국이 그리울 땐 서버에 접속하지 [c++]