BackJoon_단어뒤집기 2 (17413번)

Inhwan98·2023년 3월 30일
0

PTU STUDY_BACKJOON

목록 보기
19/21

문제

문자열 S가 주어졌을 때, 이 문자열에서 단어만 뒤집으려고 한다.

먼저, 문자열 S는 아래와과 같은 규칙을 지킨다.

  1. 알파벳 소문자('a'-'z'), 숫자('0'-'9'), 공백(' '), 특수 문자('<', '>')로만 이루어져 있다.
  2. 문자열의 시작과 끝은 공백이 아니다.
  3. '<'와 '>'가 문자열에 있는 경우 번갈아가면서 등장하며, '<'이 먼저 등장한다. 또, 두 문자의 개수는 같다.

태그는 '<'로 시작해서 '>'로 끝나는 길이가 3 이상인 부분 문자열이고, '<'와 '>' 사이에는 알파벳 소문자와 공백만 있다. 단어는 알파벳 소문자와 숫자로 이루어진 부분 문자열이고, 연속하는 두 단어는 공백 하나로 구분한다. 태그는 단어가 아니며, 태그와 단어 사이에는 공백이 없다.

입력

첫째 줄에 문자열 S가 주어진다. S의 길이는 100,000 이하이다.

출력

첫째 줄에 문자열 S의 단어를 뒤집어서 출력한다.

예제

  • Example 1:
Input:
baekjoon online judge

Output:
noojkeab enilno egduj
  • Example 2:
Input:
<open>tag<close>

Output:
<open>gat<close>
  • Example 3:
Input:
<ab cd>ef gh<ij kl>

Output:
<ab cd>fe hg<ij kl>
  • Example 4:
Input:
one1 two2 three3 4fourr 5five 6six

Output:
1eno 2owt 3eerht rruof4 evif5 xis6
  • Example 5:
Input:
<int><max>2147483647<long long><max>9223372036854775807

Output:
<int><max>7463847412<long long><max>7085774586302733229
  • Example 6:
Input:
<problem>17413<is hardest>problem ever<end>

Output:
<problem>31471<is hardest>melborp reve<end>
  • Example 7:
Input:
<   space   >space space space<    spa   c e>

Output:
<   space   >ecaps ecaps ecaps<    spa   c e>

코드

#define _CRT_SECURE_NO_WARNIGNS
#include <iostream>
#include <vector>
#include <string>
#include <algorithm>

using namespace std;

int main()
{
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);

	string s;
	string temp;
	vector<string> result;

	bool isSkip = false;

	getline(cin, s);
	cin.ignore();
	s.push_back(' ');
	for (long unsigned int i = 0; i < s.size(); i++)
	{
		temp.push_back(s[i]);

		if (s[i] == '<' && temp.size() == 1) isSkip = true;
		else if(s[i] == '>')
		{
			isSkip = false;
			result.emplace_back(temp);
			temp.clear();
			continue;
		}
		if (isSkip == true) continue;
	
		if (isspace(s[i]) || s[i] == '<')
		{
			reverse(temp.begin(), temp.end()-1);
			result.emplace_back(temp);
			temp.clear();
			if (s[i] == '<') isSkip = true;
		}
	}

	for (string a : result)
	{
		cout << a;
	}

	return 0;
}

풀이

1.

		//1.
		temp.push_back(s[i]);
        //2.
		if (s[i] == '<' && temp.size() == 1) isSkip = true;
        //3.
		else if(s[i] == '>')
		{
			isSkip = false;
			result.emplace_back(temp);
			temp.clear();
			continue;
		}
        //4.
		if (isSkip == true) continue;
  1. 계속해서 문자를 더해준다.
  2. 첫 문자가 '<' 라면 reverse를 안하기 위해 isSkip을 true로 할당한다.
  3. 문자가 '>' 라면 isSkip을 false로 할당해주고 result 에 추가해준다.
    다음 문자를 탐색하기 위해 temp는 초기화 시킨다.
  4. 2번에서 isSkip임이 확인되면 continue 한다.

2.

		//1.
		if (isspace(s[i]) || s[i] == '<')
		{
			reverse(temp.begin(), temp.end()-1);
			result.emplace_back(temp);
			temp.clear();
			if (s[i] == '<') isSkip = true;
		}
  • 문자가 공백 or 문자 뒤에 이어지는 '<' 일 경우에 문자의 끝을 알리는 것이기 때문에
    reverse함수를 사용해서 문자열을 뒤집어준다. (공백 혹은 '<'를 제외하고 뒤집어야 하기 때문에 temp.end()-1을 해준다.
  • result에 뒤집은 문자를 추가 해주고, 다시 다른 문자를 탐색하기 위해 temp를 초기화 해준다.
  • 현재 문자가 '<'라면 다시 isSkip을 true로 할당해줘서 reverse되는 것을 방지한다.

결과

Runtime 0 ms / Memory 2516 KB


https://www.acmicpc.net/problem/17413

profile
코딩마스터

0개의 댓글